Решение на ExpireMap от Шенай Мустафа

Обратно към всички решения

Към профила на Шенай Мустафа

Резултати

  • 4 точки от тестове
  • 0 бонус точки
  • 4 точки общо
  • 11 успешни тест(а)
  • 14 неуспешни тест(а)

Код

package main
import "fmt"
import "sync"
import "time"
import "errors"
import "strings"
import "strconv"
type ExpireObj struct {
Value interface{}
ExpireTime time.Time
Duration time.Duration
}
type ExpireMap struct {
Cache map[string]ExpireObj
ExpireChan chan string
QuitChan chan bool
WaitGroup sync.WaitGroup
sync.Mutex
}
//---------------------------------------------------------------------------------
func NewExpireMap() *ExpireMap {
expireMap := new(ExpireMap)
expireMap.Cache = make(map[string]ExpireObj)
expireMap.ExpireChan = make(chan string, 10)
expireMap.QuitChan = make(chan bool, 10)
return expireMap
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Set(key string, value interface{}, expire time.Duration) {
em.Lock()
defer em.Unlock()
obj := new(ExpireObj)
obj.Value = value
obj.Duration = expire
obj.ExpireTime = time.Now().Add(expire)
em.Cache[key] = *obj
em.WaitGroup.Add(1)
go func(key string, expire time.Duration, em *ExpireMap) {
defer em.WaitGroup.Done()
select {
case <-em.QuitChan:
return
case <-time.After(expire):
value, ok := em.Cache[key]
if ok && (time.Now().After(value.ExpireTime) || time.Now().Equal(value.ExpireTime)) {
em.ExpireChan <- key
delete(em.Cache, key)
return
}
}
}(key, expire, em)
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Get(key string) (interface{}, bool) {
em.Lock()
defer em.Unlock()
if contains := em.Contains(key); !contains {
return nil, false
}
value, _ := em.Cache[key]
return value.Value, true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) GetInt(key string) (int, bool) {
value, ok := em.Get(key)
res, isInt := value.(int)
if !ok && !isInt {
return 0, false
}
return res, true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) GetFloat64(key string) (float64, bool) {
value, ok := em.Get(key)
res, isFloat64 := value.(float64)
if !ok && !isFloat64 {
return 0.0, false
}
return res, true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) GetString(key string) (string, bool) {
value, ok := em.Get(key)
str, isString := value.(string)
if !ok && !isString {
return "", false
}
return str, true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) GetBool(key string) (bool, bool) {
value, ok := em.Get(key)
res, isBool := value.(bool)
if !ok && !isBool {
return false, false
}
return res, true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Expires(key string) (time.Time, bool) {
em.Lock()
defer em.Unlock()
if contains := em.Contains(key); !contains {
return time.Time{}, false
}
value, _ := em.Cache[key]
return value.ExpireTime, true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Delete(key string) {
em.Lock()
defer em.Unlock()
delete(em.Cache, key)
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Contains(key string) bool {
value, ok := em.Cache[key]
if !ok {
return false
}
if time.Now().After(value.ExpireTime) || time.Now().Equal(value.ExpireTime) {
return false
}
return true
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Size() int {
em.Lock()
defer em.Unlock()
sz := 0
for _, value := range em.Cache {
if time.Now().After(value.ExpireTime) || time.Now().Equal(value.ExpireTime) {
sz++
}
}
return sz
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Increment(key string) error {
//em.Lock()
if contains := em.Contains(key); !contains {
return errors.New("No such key")
}
value := em.Cache[key]
switch value.Value.(type) {
case string:
if str, ok := value.Value.(string); ok {
if intValue, err := strconv.Atoi(str); err == nil {
delete(em.Cache, key)
intValue++
//em.Unlock()
em.Set(key, strconv.Itoa(intValue), value.Duration)
return nil
}
}
case int:
if intValue, ok := value.Value.(int); ok {
delete(em.Cache, key)
intValue++
//em.Unlock()
em.Set(key, intValue, value.Duration)
return nil
}
default:
//em.Unlock()
}
return errors.New("Value's type is not an int")
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Decrement(key string) error {
//em.Lock()
fmt.Println("enter increment with key")
fmt.Println(key)
if contains := em.Contains(key); !contains {
return errors.New("No such key")
}
value := em.Cache[key]
switch value.Value.(type) {
case string:
if str, ok := value.Value.(string); ok {
if intValue, err := strconv.Atoi(str); err == nil {
delete(em.Cache, key)
intValue--
//em.Unlock()
em.Set(key, strconv.Itoa(intValue), value.Duration)
return nil
}
}
case int:
if intValue, ok := value.Value.(int); ok {
delete(em.Cache, key)
intValue--
//em.Unlock()
em.Set(key, intValue, value.Duration)
return nil
}
default:
//em.Unlock()
}
return errors.New("Value's type is not an int")
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) ToUpper(key string) error {
em.Lock()
defer em.Unlock()
if contains := em.Contains(key); !contains {
return errors.New("No such key")
}
oldValue := em.Cache[key].Value
var str string
var ok bool
if str, ok = oldValue.(string); !ok {
return errors.New("Key value is not a string")
}
obj := new(ExpireObj)
*obj = em.Cache[key]
obj.Value = strings.ToUpper(str)
em.Cache[key] = *obj
return nil
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) ToLower(key string) error {
em.Lock()
defer em.Unlock()
if contains := em.Contains(key); !contains {
return errors.New("No such key")
}
oldValue := em.Cache[key].Value
var str string
var ok bool
if str, ok = oldValue.(string); !ok {
return errors.New("Key value is not a string")
}
obj := new(ExpireObj)
*obj = em.Cache[key]
obj.Value = strings.ToLower(str)
em.Cache[key] = *obj
return nil
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) ExpiredChan() <-chan string {
em.Lock()
defer em.Unlock()
c := make(<-chan string)
c = em.ExpireChan
return c
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Cleanup() {
em.Lock()
defer em.Unlock()
em.Cache = make(map[string]ExpireObj)
}
//---------------------------------------------------------------------------------
func (em *ExpireMap) Destroy() {
em.Lock()
defer em.Unlock()
close(em.ExpireChan)
em.QuitChan <- true
em.WaitGroup.Wait()
close(em.QuitChan)
em = new(ExpireMap)
}

Лог от изпълнението

PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.012s
panic: test timed out

goroutine 8 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300320)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestGettingTypes(0x1837a120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:77 +0x3bb
testing.tRunner(0x1837a120, 0x81c2bac)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 5 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8123268, 0x3, 0xa13b8600, 0x1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 7 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8124fc8, 0x4, 0xa13b8600, 0x1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
panic: test timed out

goroutine 15 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [sleep]:
time.Sleep(0x3c336080, 0x0)
	/usr/local/lib/go/src/pkg/runtime/ztime_linux_386.c:19 +0x3a
_/tmp/d20141204-6466-1qfaa9d.TestSizes(0x1837a1e0)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:111 +0x3b5
testing.tRunner(0x1837a1e0, 0x81c2bb8)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 5 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300308, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300328, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 7 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300348, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 8 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300368, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 9 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300388, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 10 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183003a8, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 11 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183003c8, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 12 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183003e8, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 13 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300408, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 14 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300428, 0x5, 0x3b9aca00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.122s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.172s
panic: test timed out

goroutine 7 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300320)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestContainsMethod(0x1837b120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:196 +0x1f1
testing.tRunner(0x1837b120, 0x81c2bdc)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8123088, 0x3, 0xb2d05e00, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
panic: test timed out

goroutine 7 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300320)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestDeleteMethod(0x1837a120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:226 +0x352
testing.tRunner(0x1837a120, 0x81c2be8)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8124f58, 0x4, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
enter increment with key
number
enter increment with key
foo
enter increment with key
not-here
panic: test timed out

goroutine 14 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x183003f0)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestSimpleIncrementAndDecrementCalls(0x1837c120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:326 +0x8d8
testing.tRunner(0x1837c120, 0x81c2bf4)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 7 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x812a528, 0x8, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 8 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 9 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 10 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x812a528, 0x8, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 11 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 12 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125468, 0x5, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 13 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.014s
panic: test timed out

goroutine 7 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300320)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestCleaningUpTheMap(0x1837b1e0)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:341 +0x1a7
testing.tRunner(0x1837b1e0, 0x81c2c00)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
enter increment with key
number
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
enter increment with key
number
fatal error: evacuation not done in time

goroutine 6 [running]:
[fp=0xb79b9e38] runtime.throw(0x81c3979)
	/usr/local/lib/go/src/pkg/runtime/panic.c:473 +0x66
[fp=0xb79b9e58] hash_grow(0x80f5d80, 0x18331800)
	/usr/local/lib/go/src/pkg/runtime/hashmap.c:-207 +0x36
[fp=0xb79b9ea4] hash_insert(0x80f5d80, 0x18331800, 0xb79b9edc, 0xb79b9ee4)
	/usr/local/lib/go/src/pkg/runtime/hashmap.c:642 +0x32f
[fp=0xb79b9eb8] runtime.mapassign(0x80f5d80, 0x18331800, 0xb79b9edc, 0xb79b9ee4)
	/usr/local/lib/go/src/pkg/runtime/hashmap.c:1272 +0x8a
[fp=0xb79b9ed4] runtime.mapassign1()
	/usr/local/lib/go/src/pkg/runtime/hashmap.c:1301 +0x5c
[fp=0xb79b9f4c] _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set(0x18348600, 0x8125d78, 0x6, 0x80f9440, 0x18395ea0, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:45 +0x128
[fp=0xb79b9fb8] _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Increment(0x18348600, 0x8125d78, 0x6, 0x0, 0x0, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:200 +0x222
[fp=0xb79b9fdc] _/tmp/d20141204-6466-1qfaa9d.func·006()
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:364 +0x6d
[fp=0xb79b9fe0] runtime.goexit()
	/usr/local/lib/go/src/pkg/runtime/proc.c:1223
created by _/tmp/d20141204-6466-1qfaa9d.TestIncAndDecInManyRoutines
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:366 +0x1ea

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300320)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x18331820)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.TestIncAndDecInManyRoutines(0x1837b120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:379 +0x275
testing.tRunner(0x1837b120, 0x81c2c0c)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 5 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 18 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 30 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 26 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 10 [semacquire]:
sync.runtime_Semacquire(0x18348624)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*Mutex).Lock(0x18348620)
	/usr/local/lib/go/src/pkg/sync/mutex.go:66 +0xb6
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set(0x18348600, 0x8125d78, 0x6, 0x80f9440, 0x18395e88, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:38 +0x2d
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Decrement(0x18348600, 0x8125d78, 0x6, 0x0, 0x0, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:239 +0x355
_/tmp/d20141204-6466-1qfaa9d.func·007()
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:374 +0x6d
created by _/tmp/d20141204-6466-1qfaa9d.TestIncAndDecInManyRoutines
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:376 +0x256

goroutine 11 [semacquire]:
sync.runtime_Semacquire(0x18348624)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*Mutex).Lock(0x18348620)
	/usr/local/lib/go/src/pkg/sync/mutex.go:66 +0xb6
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set(0x18348600, 0x8125d78, 0x6, 0x80f9440, 0x18395d60, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:38 +0x2d
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Decrement(0x18348600, 0x8125d78, 0x6, 0x0, 0x0, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:239 +0x355
_/tmp/d20141204-6466-1qfaa9d.func·007()
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:374 +0x6d
created by _/tmp/d20141204-6466-1qfaa9d.TestIncAndDecInManyRoutines
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:376 +0x256

goroutine 12 [semacquire]:
sync.runtime_Semacquire(0x18348624)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*Mutex).Lock(0x18348620)
	/usr/local/lib/go/src/pkg/sync/mutex.go:66 +0xb6
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set(0x18348600, 0x8125d78, 0x6, 0x80f9440, 0x18395de8, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:38 +0x2d
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Decrement(0x18348600, 0x8125d78, 0x6, 0x18331020, 0x18395dc8, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:239 +0x355
_/tmp/d20141204-6466-1qfaa9d.func·007()
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:374 +0x6d
created by _/tmp/d20141204-6466-1qfaa9d.TestIncAndDecInManyRoutines
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:376 +0x256

goroutine 13 [semacquire]:
sync.runtime_Semacquire(0x18348624)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*Mutex).Lock(0x18348620)
	/usr/local/lib/go/src/pkg/sync/mutex.go:66 +0xb6
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set(0x18348600, 0x8125d78, 0x6, 0x80f9440, 0x18395ee8, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:38 +0x2d
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Decrement(0x18348600, 0x8125d78, 0x6, 0x18331020, 0x18395ec8, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:239 +0x355
_/tmp/d20141204-6466-1qfaa9d.func·007()
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:374 +0x6d
created by _/tmp/d20141204-6466-1qfaa9d.TestIncAndDecInManyRoutines
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:376 +0x256

goroutine 14 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 15 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 16 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 17 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 19 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 20 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 21 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 22 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 23 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 24 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 25 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 27 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 28 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 29 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 31 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 32 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 33 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 34 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 35 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 36 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 37 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 38 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 39 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 40 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 41 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 42 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 43 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 44 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 45 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 46 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 47 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 48 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 49 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 50 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 51 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 52 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 53 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 54 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 55 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 56 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 57 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 58 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 59 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 60 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 61 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 62 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 63 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 64 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 65 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 66 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 67 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 68 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 69 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 70 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 71 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 72 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 73 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 74 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 75 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 76 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 77 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 78 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 79 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 80 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 81 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 82 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 83 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 84 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 85 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 86 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 87 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 88 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 89 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 90 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 91 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 92 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 93 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 94 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 95 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 96 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 97 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 98 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 99 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8125d78, 0x6, 0x502f9000, 0x9, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	0.069s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.012s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.011s
panic: test timed out

goroutine 9 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300350)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestTheExampleInReadme(0x1837b1e0)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:464 +0x317
testing.tRunner(0x1837b1e0, 0x81c2c30)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 5 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81231a8, 0x3, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81262f8, 0x4, 0x3ef79800, 0x15d, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 7 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81252c8, 0x4, 0xe8d60800, 0x29, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.014s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.014s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.112s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.062s
--- FAIL: TestExpiredChanWhenNoOneIsReading-2 (0.06 seconds)
	solution_test.go:554: Wrong key expired
FAIL
exit status 1
FAIL	_/tmp/d20141204-6466-1qfaa9d	0.072s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.112s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.132s
panic: test timed out

goroutine 6809 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18416e80)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
testing.(*common).FailNow(0x1837b120)
	/usr/local/lib/go/src/pkg/testing/testing.go:242 +0x2e
testing.(*common).Fatal(0x1837b120, 0xb7b50f40, 0x2, 0x2)
	/usr/local/lib/go/src/pkg/testing/testing.go:277 +0x61
_/tmp/d20141204-6466-1qfaa9d.TestConcurrentOperations(0x1837b120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:716 +0x6b1
testing.tRunner(0x1837b120, 0x81c2c84)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81263d8, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2815 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2812 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79ca0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 11 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300330, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1049 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2814 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2811 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 15 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300350, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2049 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81263d8, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 19 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300370, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2802 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81263d8, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2806 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5809 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 23 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300390, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5824 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 27 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300260, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2803 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5821 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81263d8, 0x6, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 31 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18300280, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5823 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5819 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 35 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183002a0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2809 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2804 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 39 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183002c0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5822 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5818 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 43 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183002e0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2813 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5820 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 47 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x183000b0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2810 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 49 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 50 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 51 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 52 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 53 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 54 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 55 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 56 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 57 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 58 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 59 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 60 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 61 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 62 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 63 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 64 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 65 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 66 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 67 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 68 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 69 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 70 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 71 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 72 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 73 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 74 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 75 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 76 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 77 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 78 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 79 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 80 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 81 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 82 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 83 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 84 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 85 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 86 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 87 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 88 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 89 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 90 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 91 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 92 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 93 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 94 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 95 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 96 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 97 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 98 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 99 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 765 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 766 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 767 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 768 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 770 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 771 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 772 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 774 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 775 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 776 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 778 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 779 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 780 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 782 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 783 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 784 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 786 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 787 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 788 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 790 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 791 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 792 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 794 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 795 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 796 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 798 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 799 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 800 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 802 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 803 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 804 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 806 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 809 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 810 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 811 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 812 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 813 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 814 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 815 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 816 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 817 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 818 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 819 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 820 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 821 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 822 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 823 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 824 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 825 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 826 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 827 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 828 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 829 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 830 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 831 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 832 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 833 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 834 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 835 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 836 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 837 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 838 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 839 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 840 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 841 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 842 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 843 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 844 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 845 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 846 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 847 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 848 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 849 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 850 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 851 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 852 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 853 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 854 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 855 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 856 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 857 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 858 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 859 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 860 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 861 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 862 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 863 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 864 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 865 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 866 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 867 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 868 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 869 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 870 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 871 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 872 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 873 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 874 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 875 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 876 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 877 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 878 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 879 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 880 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 881 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 882 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 883 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 884 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 885 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 886 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 887 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 888 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 889 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 890 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 891 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 892 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 893 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 894 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 895 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 896 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 897 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 898 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 899 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 900 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 901 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 902 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 903 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 904 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 905 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 906 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 907 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 908 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 909 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 910 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 911 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 912 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 913 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 914 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 915 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 916 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 917 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 918 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 919 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 920 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 921 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 922 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 923 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 924 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 925 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 926 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 927 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 928 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 929 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 930 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 931 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 932 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 933 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 934 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 935 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 936 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 937 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 938 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 939 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 940 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 941 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 942 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 943 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 944 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 945 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 946 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 947 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 948 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 949 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 950 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 951 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 952 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 953 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 954 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 955 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 956 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 957 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 958 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 959 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 960 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 961 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 962 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 963 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 964 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 965 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 966 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 967 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 968 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 969 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 970 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 971 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 972 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 973 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 974 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 975 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 976 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 977 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 978 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 979 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 980 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 981 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 982 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 983 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 984 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 985 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 986 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 987 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 988 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 989 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 990 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 991 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 992 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 993 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 994 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 995 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 996 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 997 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 998 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 999 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1000 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1001 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1002 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1003 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1004 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1005 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1006 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1007 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1008 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1009 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1010 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1011 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1012 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1013 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1014 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1015 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1016 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1017 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1018 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1019 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1020 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1021 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1022 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1023 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1024 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1025 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1026 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1027 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1028 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1029 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1030 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1031 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1032 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1033 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1034 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1035 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1036 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1037 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1038 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1039 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1040 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1041 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1042 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1043 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1044 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1045 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1046 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1047 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1048 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1050 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1051 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1052 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1053 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1054 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1055 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1056 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1057 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1058 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1059 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1060 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1061 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1062 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1063 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1064 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1065 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1066 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1067 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1068 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1069 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1070 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1071 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1072 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1073 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1074 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1075 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1076 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1077 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1078 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1079 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1080 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1081 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1082 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1083 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1084 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1085 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1086 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1087 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1088 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1089 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1090 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1091 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1092 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1093 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1094 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1095 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1096 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1097 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1098 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1099 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1765 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1766 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1767 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1768 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1770 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1771 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1772 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1774 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1775 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1776 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1778 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1779 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1780 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1782 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1783 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1784 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1786 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1787 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1788 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1790 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1791 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1792 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1794 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1795 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1796 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1798 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1799 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1800 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1802 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1803 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1804 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1806 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1809 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1810 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1811 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1812 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1813 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1814 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1815 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1816 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1817 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1818 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1819 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1820 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1821 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1822 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1823 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1824 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1825 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1826 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1827 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1828 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1829 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1830 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1831 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1832 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1833 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1834 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1835 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1836 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1837 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1838 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1839 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1840 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1841 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1842 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1843 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1844 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1845 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1846 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1847 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1848 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1849 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1850 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1851 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1852 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1853 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1854 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1855 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1856 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1857 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1858 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1859 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1860 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1861 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1862 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1863 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1864 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1865 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1866 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1867 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1868 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1869 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1870 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1871 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1872 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1873 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1874 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1875 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1876 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1877 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1878 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1879 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1880 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1881 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1882 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1883 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1884 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1885 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1886 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1887 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1888 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1889 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1890 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1891 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1892 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1893 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1894 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1895 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1896 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1897 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1898 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1899 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1900 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1901 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1902 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1903 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1904 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1905 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1906 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1907 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1908 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1909 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1910 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1911 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1912 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1913 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1914 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1915 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1916 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1917 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1918 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1919 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1920 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1921 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1922 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1923 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1924 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1925 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1926 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1927 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1928 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1929 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1930 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1931 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1932 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1933 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1934 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1935 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1936 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1937 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1938 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1939 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1940 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1941 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1942 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1943 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1944 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1945 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1946 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1947 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1948 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1949 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1950 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1951 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1952 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1953 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1954 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1955 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1956 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1957 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1958 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1959 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1960 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1961 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1962 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1963 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1964 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1965 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1966 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1967 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1968 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1969 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1970 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1971 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1972 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1973 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1974 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1975 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1976 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1977 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1978 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1979 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1980 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1981 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1982 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1983 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1984 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1985 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1986 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1987 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1988 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1989 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1990 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1991 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1992 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1993 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1994 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1995 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1996 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1997 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1998 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1999 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2000 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2001 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2002 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2003 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2004 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2005 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2006 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2007 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2008 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2009 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2010 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2011 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2012 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2013 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2014 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2015 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2016 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2017 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2018 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2019 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2020 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2021 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2022 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2023 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2024 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2025 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2026 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2027 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2028 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2029 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2030 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2031 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2032 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2033 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2034 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2035 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2036 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2037 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2038 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2039 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2040 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2041 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2042 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2043 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2044 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2045 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2046 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2047 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2048 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2050 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2051 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2052 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2053 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2054 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2055 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2056 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2057 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2058 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2059 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2060 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2061 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2062 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2063 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2064 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2065 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2066 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2067 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2068 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2069 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2070 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2071 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2072 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2073 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2074 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2075 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2076 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2077 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2078 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2079 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2080 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2081 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2082 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2083 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2084 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2085 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2086 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2087 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2088 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2089 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2090 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2091 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2092 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2093 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2094 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2095 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2096 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2097 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2098 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2099 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2765 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2766 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2767 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2768 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2770 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2771 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2772 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2774 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2775 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2776 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2778 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2779 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2780 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2782 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2783 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2784 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2786 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2787 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2788 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2790 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2791 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2792 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2794 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2795 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2796 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2798 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2799 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2800 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2816 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2817 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2818 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2819 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2820 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2821 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2822 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2823 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2824 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2825 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2826 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2827 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2828 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2829 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2830 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2831 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2832 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2833 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2834 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2835 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2836 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2837 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2838 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2839 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2840 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2841 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2842 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2843 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2844 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2845 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2846 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2847 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2848 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2849 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2850 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2851 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2852 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2853 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2854 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2855 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2856 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2857 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2858 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2859 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2860 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2861 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2862 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2863 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2864 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2865 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2866 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2867 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2868 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2869 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2870 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2871 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2872 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2873 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2874 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2875 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2876 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2877 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2878 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2879 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2880 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2881 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2882 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2883 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2884 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2885 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2886 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2887 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2888 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2889 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2890 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2891 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2892 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2893 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2894 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2895 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2896 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2897 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2898 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2899 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2900 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2901 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2902 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2903 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2904 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2905 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2906 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2907 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2908 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2909 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2910 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2911 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2912 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2913 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2914 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2915 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2916 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2917 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2918 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2919 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2920 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2921 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2922 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2923 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2924 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2925 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2926 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2927 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2928 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2929 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2930 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2931 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2932 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2933 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2934 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2935 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2936 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2937 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2938 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2939 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2940 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2941 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2942 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2943 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2944 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2945 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2946 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2947 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2948 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2949 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2950 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2951 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2952 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2953 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2954 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2955 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2956 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2957 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2958 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2959 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2960 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2961 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2962 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2963 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2964 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2965 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2966 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2967 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2968 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2969 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2970 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2971 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2972 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2973 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2974 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2975 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2976 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2977 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2978 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2979 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2980 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2981 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2982 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2983 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2984 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2985 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2986 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2987 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2988 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2989 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2990 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2991 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2992 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2993 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2994 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2995 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2996 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2997 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2998 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 2999 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3000 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3001 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3002 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3003 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3004 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3005 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3006 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3007 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3008 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3009 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3010 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3011 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3012 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3013 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3014 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3015 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3016 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3017 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3018 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3019 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3020 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3021 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3022 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3023 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3024 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3025 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3026 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3027 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3028 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3029 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3030 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3031 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3032 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3033 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3034 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3035 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3036 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3037 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3038 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3039 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3040 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3041 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3042 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3043 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3044 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3045 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3046 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3047 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3048 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3049 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3050 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3051 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3052 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3053 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3054 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3055 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3056 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3057 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3058 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3059 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3060 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3061 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3062 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3063 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3064 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3065 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3066 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3067 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3068 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3069 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3070 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3071 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3072 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3073 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3074 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3075 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3076 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3077 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3078 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3079 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3080 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3081 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3082 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3083 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3084 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3085 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3086 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3087 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3088 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3089 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3090 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3091 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3092 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3093 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3094 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3095 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3096 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3097 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3098 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3099 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79cc0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79ce0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5816 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79d00, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5815 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79d20, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5814 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79d40, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5813 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79d60, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5812 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79d80, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5817 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5811 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79da0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5810 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18c79dc0, 0x5, 0x8c2e2800, 0xd1, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3809 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3810 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3811 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3812 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3813 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3814 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3815 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3816 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3817 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3818 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3819 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3820 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3821 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3822 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3823 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3824 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3825 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3826 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3827 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3828 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3829 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3830 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3831 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3832 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3833 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3834 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3835 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3836 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3837 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3838 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3839 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3840 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3841 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3842 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3843 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3844 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3845 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3846 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3847 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3848 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3849 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3850 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3851 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3852 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3853 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3854 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3855 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3856 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3857 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3858 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3859 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3860 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3861 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3862 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3863 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3864 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3865 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3866 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3867 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3868 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3869 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3870 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3871 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3872 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3873 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3874 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3875 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3876 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3877 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3878 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3879 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3880 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3881 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3882 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3883 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3884 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3885 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3886 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3887 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3888 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3889 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3890 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3891 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3892 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3893 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3894 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3895 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3896 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3897 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3898 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3899 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3900 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3901 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3902 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3903 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3904 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3905 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3906 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3907 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3908 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3909 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3910 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3911 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3912 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3913 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3914 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3915 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3916 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3917 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3918 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3919 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3920 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3921 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3922 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3923 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3924 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3925 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3926 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3927 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3928 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3929 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3930 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3931 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3932 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3933 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3934 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3935 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3936 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3937 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3938 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3939 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3940 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3941 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3942 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3943 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3944 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3945 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3946 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3947 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3948 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3949 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3950 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3951 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3952 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3953 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3954 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3955 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3956 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3957 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3958 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3959 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3960 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3961 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3962 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3963 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3964 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3965 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3966 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3967 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3968 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3969 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3970 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3971 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3972 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3973 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3974 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3975 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3976 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3977 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3978 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3979 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3980 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3981 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3982 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3983 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3984 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3985 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3986 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3987 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3988 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3989 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3990 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3991 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3992 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3993 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3994 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3995 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3996 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3997 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3998 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 3999 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4000 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4001 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4002 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4003 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4004 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4005 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4006 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4007 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4008 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4009 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4010 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4011 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4012 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4013 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4014 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4015 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4016 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4017 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4018 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4019 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4020 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4021 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4022 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4023 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4024 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4025 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4026 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4027 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4028 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4029 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4030 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4031 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4032 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4033 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4034 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4035 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4036 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4037 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4038 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4039 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4040 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4041 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4042 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4043 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4044 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4045 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4046 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4047 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4048 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4049 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4050 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4051 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4052 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4053 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4054 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4055 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4056 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4057 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4058 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4059 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4060 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4061 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4062 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4063 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4064 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4065 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4066 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4067 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4068 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4069 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4070 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4071 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4072 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4073 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4074 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4075 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4076 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4077 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4078 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4079 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4080 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4081 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4082 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4083 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4084 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4085 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4086 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4087 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4088 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4089 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4090 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4091 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4092 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4093 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4094 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4095 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4096 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4097 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4098 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4099 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4765 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4766 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4767 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4768 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4770 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4771 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4772 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4774 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4775 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4776 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4778 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4779 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4780 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4782 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4783 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4784 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4786 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4787 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4788 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4790 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4791 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4792 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4794 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4795 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4796 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4798 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4799 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4800 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4802 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4803 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4804 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4806 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4809 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4810 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4811 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4812 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4813 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4814 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4815 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4816 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4817 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4818 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4819 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4820 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4821 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4822 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4823 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4824 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4825 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4826 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4827 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4828 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4829 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4830 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4831 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4832 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4833 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4834 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4835 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4836 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4837 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4838 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4839 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4840 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4841 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4842 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4843 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4844 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4845 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4846 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4847 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4848 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4849 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4850 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4851 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4852 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4853 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4854 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4855 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4856 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4857 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4858 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4859 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4860 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4861 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4862 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4863 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4864 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4865 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4866 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4867 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4868 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4869 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4870 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4871 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4872 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4873 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4874 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4875 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4876 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4877 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4878 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4879 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4880 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4881 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4882 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4883 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4884 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4885 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4886 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4887 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4888 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4889 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4890 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4891 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4892 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4893 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4894 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4895 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4896 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4897 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4898 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4899 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4900 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4901 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4902 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4903 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4904 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4905 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4906 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4907 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4908 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4909 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4910 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4911 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4912 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4913 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4914 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4915 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4916 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4917 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4918 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4919 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4920 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4921 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4922 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4923 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4924 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4925 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4926 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4927 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4928 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4929 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4930 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4931 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4932 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4933 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4934 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4935 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4936 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4937 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4938 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4939 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4940 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4941 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4942 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4943 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4944 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4945 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4946 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4947 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4948 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4949 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4950 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4951 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4952 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4953 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4954 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4955 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4956 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4957 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4958 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4959 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4960 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4961 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4962 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4963 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4964 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4965 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4966 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4967 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4968 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4969 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4970 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4971 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4972 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4973 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4974 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4975 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4976 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4977 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4978 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4979 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4980 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4981 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4982 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4983 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4984 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4985 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4986 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4987 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4988 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4989 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4990 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4991 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4992 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4993 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4994 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4995 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4996 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4997 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4998 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 4999 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5000 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5001 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5002 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5003 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5004 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5005 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5006 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5007 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5008 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5009 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5010 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5011 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5012 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5013 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5014 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5015 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5016 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5017 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5018 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5019 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5020 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5021 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5022 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5023 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5024 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5025 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5026 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5027 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5028 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5029 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5030 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5031 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5032 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5033 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5034 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5035 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5036 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5037 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5038 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5039 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5040 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5041 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5042 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5043 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5044 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5045 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5046 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5047 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5048 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5049 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5050 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5051 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5052 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5053 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5054 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5055 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5056 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5057 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5058 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5059 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5060 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5061 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5062 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5063 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5064 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5065 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5066 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5067 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5068 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5069 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5070 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5071 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5072 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5073 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5074 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5075 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5076 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5077 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5078 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5079 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5080 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5081 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5082 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5083 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5084 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5085 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5086 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5087 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5088 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5089 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5090 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5091 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5092 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5093 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5094 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5095 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5096 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5097 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5098 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5099 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5153 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5154 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5155 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5156 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5157 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5158 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5159 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5765 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5766 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5767 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5768 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5770 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5771 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5772 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5774 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5775 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5776 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5778 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5779 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5780 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5782 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5783 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5784 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5786 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5787 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5788 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5790 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5791 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5792 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5794 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5795 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5796 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5798 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5799 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5800 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5802 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5803 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5804 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5806 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5825 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5826 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5827 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5828 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5829 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5830 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5831 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5832 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5833 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5834 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5835 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5836 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5837 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5838 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5839 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5840 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5841 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5842 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5843 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5844 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5845 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5846 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5847 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5848 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5849 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5850 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5851 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5852 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5853 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5854 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5855 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5856 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5857 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5858 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5859 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5860 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5861 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5862 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5863 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5864 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5865 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5866 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5867 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5868 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5869 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5870 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5871 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5872 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5873 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5874 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5875 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5876 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5877 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5878 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5879 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5880 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5881 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5882 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5883 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5884 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5885 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5886 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5887 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5888 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5889 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5890 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5891 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5892 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5893 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5894 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5895 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5896 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5897 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5898 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5899 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5900 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5901 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5902 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5903 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5904 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5905 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5906 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5907 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5908 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5909 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5910 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5911 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5912 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5913 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5914 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5915 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5916 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5917 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5918 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5919 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5920 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5921 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5922 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5923 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5924 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5925 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5926 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5927 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5928 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5929 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5930 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5931 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5932 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5933 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5934 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5935 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5936 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5937 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5938 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5939 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5940 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5941 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5942 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5943 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5944 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5945 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5946 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5947 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5948 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5949 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5950 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5951 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5952 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5953 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5954 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5955 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5956 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5957 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5958 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5959 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5960 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5961 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5962 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5963 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5964 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5965 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5966 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5967 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5968 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5969 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5970 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5971 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5972 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5973 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5974 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5975 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5976 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5977 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5978 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5979 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5980 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5981 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5982 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5983 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5984 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5985 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5986 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5987 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5988 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5989 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5990 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5991 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5992 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5993 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5994 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5995 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5996 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5997 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5998 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 5999 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6000 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6001 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6002 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6003 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6004 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6005 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6006 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6007 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6008 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6009 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6010 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6011 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6012 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6013 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6014 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6015 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6016 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6017 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6018 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6019 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6020 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6021 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6022 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6023 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6024 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6025 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6026 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6027 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6028 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6029 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6030 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6031 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6032 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6033 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6034 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6035 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6036 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6037 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6038 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6039 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6040 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6041 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6042 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6043 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6044 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6045 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6046 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6047 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6048 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6049 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6050 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6051 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6052 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6053 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6054 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6055 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6056 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6057 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6058 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6059 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6060 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6061 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6062 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6063 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6064 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6065 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6066 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6067 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6068 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6069 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6070 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6071 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6072 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6073 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6074 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6075 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6076 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6077 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6078 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6079 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6080 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6081 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6082 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6083 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6084 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6085 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6086 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6087 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6088 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6089 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6090 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6091 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6092 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6093 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6094 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6095 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6096 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6097 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6098 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6099 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6100 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6101 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6102 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6103 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6104 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6105 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6106 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6107 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6108 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6109 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6110 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6111 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6112 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6113 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6114 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6115 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6116 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6117 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6118 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6119 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6120 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6121 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6122 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6123 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6124 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6125 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6126 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6127 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6128 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6129 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6130 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6131 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6132 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6133 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6134 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6135 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6136 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6137 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6138 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6139 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6140 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6141 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6142 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6143 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6144 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6145 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6146 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6147 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6148 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6149 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6150 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6151 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6152 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6160 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6161 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6162 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6163 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6164 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6165 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6166 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6167 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6168 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6169 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6170 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6171 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6172 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6173 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6174 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6175 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6176 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6177 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6178 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6179 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6180 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6181 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6182 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6183 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6184 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6185 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6186 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6187 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6188 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6189 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6190 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6191 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6192 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6193 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6194 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6195 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6196 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6197 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6198 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6199 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6200 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6201 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6202 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6203 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6204 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6205 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6206 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6207 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6208 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6209 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6210 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6211 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6212 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6213 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6214 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6215 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6216 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6217 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6218 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6219 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6220 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6221 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6222 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6223 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6224 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6225 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6226 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6227 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6228 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6229 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6230 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6231 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6232 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6233 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6234 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6235 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6236 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6237 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6238 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6239 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6240 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6241 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6242 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6243 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6244 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6245 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6246 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6247 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6248 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6249 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6250 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6251 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6252 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6253 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6254 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6255 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6256 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6257 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6258 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6259 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6260 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6261 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6262 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6263 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6264 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6265 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6266 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6267 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6268 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6269 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6270 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6271 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6272 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6273 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6274 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6275 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6276 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6277 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6278 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6279 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6280 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6281 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6282 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6283 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6284 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6285 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6286 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6287 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6288 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6289 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6290 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6291 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6292 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6293 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6294 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6295 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6296 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6297 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6298 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6299 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6300 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6301 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6302 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6303 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6304 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6305 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6306 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6307 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6308 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6309 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6310 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6311 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6312 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6313 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6314 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6315 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6316 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6317 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6318 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6319 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6320 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6321 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6322 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6323 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6324 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6325 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6326 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6327 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6328 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6329 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6330 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6331 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6332 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6333 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6334 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6335 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6336 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6337 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6338 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6339 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6340 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6341 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6342 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6343 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6344 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6345 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6346 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6347 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6348 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6349 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6350 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6351 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6352 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6353 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6354 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6355 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6356 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6357 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6358 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6359 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6360 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6361 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6362 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6363 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6364 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6365 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6366 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6367 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6368 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6369 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6370 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6371 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6372 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6373 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6374 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6375 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6376 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6377 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6378 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6379 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6380 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6381 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6382 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6383 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6384 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6385 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6386 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6387 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6388 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6389 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6390 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6391 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6392 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6393 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6394 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6395 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6396 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6397 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6398 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6399 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6400 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6401 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6402 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6403 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6404 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6405 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6406 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6407 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6408 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6409 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6410 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6411 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6412 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6413 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6414 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6415 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6416 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6417 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6418 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6419 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6420 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6421 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6422 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6423 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6424 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6425 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6426 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6427 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6428 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6429 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6430 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6431 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6432 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6433 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6434 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6435 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6436 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6437 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6438 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6439 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6440 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6441 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6442 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6443 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6444 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6445 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6446 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6447 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6448 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6449 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6450 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6451 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6452 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6453 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6454 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6455 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6456 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6457 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6458 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6459 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6460 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6461 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6462 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6463 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6464 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6465 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6466 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6467 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6468 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6469 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6470 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6471 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6472 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6473 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6474 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6475 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6476 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6477 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6478 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6479 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6480 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6481 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6482 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6483 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6484 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6485 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6486 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6487 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6488 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6489 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6490 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6491 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6492 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6493 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6494 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6495 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6496 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6497 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6498 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6499 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6500 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6501 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6502 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6503 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6504 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6505 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6506 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6507 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6508 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6509 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6510 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6511 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6512 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6513 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6514 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6515 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6516 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6517 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6518 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6519 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6520 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6521 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6522 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6523 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6524 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6525 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6526 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6527 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6528 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6529 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6530 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6531 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6532 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6533 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6534 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6535 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6536 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6537 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6538 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6539 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6540 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6541 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6542 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6543 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6544 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6545 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6546 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6547 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6548 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6549 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6550 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6551 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6552 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6553 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6554 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6555 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6556 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6557 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6558 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6559 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6560 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6561 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6562 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6563 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6564 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6565 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6566 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6567 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6568 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6569 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6570 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6571 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6572 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6573 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6574 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6575 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6576 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6577 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6578 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6579 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6580 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6581 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6582 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6583 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6584 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6585 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6586 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6587 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6588 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6589 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6590 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6591 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6592 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6593 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6594 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6595 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6596 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6597 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6598 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6599 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6600 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6601 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6602 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6603 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6604 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6605 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6606 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6607 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6608 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6609 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6610 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6611 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6612 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6613 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6614 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6615 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6616 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6617 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6618 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6619 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6620 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6621 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6622 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6623 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6624 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6625 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6626 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6627 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6628 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6629 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6630 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6631 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6632 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6633 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6634 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6635 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6636 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6637 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6638 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6639 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6640 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6641 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6642 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6643 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6644 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6645 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6646 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6647 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6648 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6649 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6650 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6651 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6652 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6653 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6654 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6655 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6656 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6657 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6658 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6659 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6660 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6661 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6662 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6663 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6664 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6665 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6666 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6667 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6668 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6669 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6670 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6671 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6672 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6673 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6674 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6675 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6676 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6677 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6678 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6679 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6680 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6681 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6682 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6683 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6684 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6685 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6686 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6687 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6688 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6689 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6690 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6691 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6692 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6693 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6694 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6695 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6696 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6697 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6698 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6699 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6700 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6701 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6702 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6703 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6704 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6705 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6706 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6707 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6708 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6709 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6710 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6711 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6712 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6713 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6714 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6715 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6716 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6717 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6718 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6719 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6720 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6721 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6722 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6723 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6724 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6725 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6726 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6727 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6728 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6729 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6730 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6731 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6732 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6733 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6734 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6735 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6736 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6737 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6738 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6739 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6740 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6741 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6742 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6743 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6744 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6745 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6746 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6747 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6748 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6749 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6750 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6751 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6752 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6753 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6754 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6755 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6756 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6757 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6758 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6759 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6760 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6761 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6762 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6763 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6764 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6765 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6766 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6767 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6768 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6769 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6770 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6771 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6772 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6773 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6774 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6775 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6776 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6777 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6778 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6779 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6780 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6781 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6782 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6783 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6784 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6785 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6786 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6787 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6788 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6789 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6790 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6791 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6792 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6793 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6794 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6795 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6796 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6797 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6798 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6799 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6800 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6801 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6802 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6803 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6804 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6805 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6806 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6807 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6808 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81258e8, 0x7, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	2.553s
panic: test timed out

goroutine 11 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300370)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834863c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348630)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestMultipleMapsWithDestroyAndCleanupCalls(0x1837c180)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:763 +0x555
testing.tRunner(0x1837c180, 0x81c2c90)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81259a8, 0x4, 0x7e11d600, 0x3, 0x18348630, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 7 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81259b8, 0x4, 0x7e11d600, 0x3, 0x18348630, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 8 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x8123288, 0x3, 0x42770c00, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 9 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81259a8, 0x4, 0x42770c00, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 10 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81259b8, 0x4, 0x42770c00, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
PASS
ok  	_/tmp/d20141204-6466-1qfaa9d	0.012s
panic: test timed out

goroutine 8 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300318)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestExpiresMethod(0x1837b120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:869 +0x8ee
testing.tRunner(0x1837b120, 0x81c2ca8)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 6 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81259a8, 0x4, 0x7e11d600, 0x3, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 7 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x81259b8, 0x4, 0xa817c800, 0x4, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.012s
panic: runtime error: send on closed channel

goroutine 11 [running]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18351270, 0xf, 0xee5adf7, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:57 +0x223
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300380)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestMultipleKeysWithTheSameExpireTime(0x1837c120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:892 +0x733
testing.tRunner(0x1837c120, 0x81c2cb4)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 5 [runnable]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18351200, 0xf, 0xee6ad59, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:57 +0x223
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 6 [runnable]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18351210, 0xf, 0xee621c3, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:57 +0x223
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 10 [runnable]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18351260, 0xf, 0xee5c31e, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:57 +0x223
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191

goroutine 12 [runnable]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x18351280, 0xf, 0xee596c2, 0x0, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:57 +0x223
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	0.272s
panic: test timed out

goroutine 7 [running]:
testing.alarm()
	/usr/local/lib/go/src/pkg/testing/testing.go:533 +0x44
created by time.goFunc
	/usr/local/lib/go/src/pkg/time/sleep.go:122 +0x45

goroutine 1 [chan receive]:
testing.RunTests(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x1, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:434 +0x69f
testing.Main(0x8148ab0, 0x81c2ba0, 0x19, 0x19, 0x81c5600, ...)
	/usr/local/lib/go/src/pkg/testing/testing.go:365 +0x69
main.main()
	_/tmp/d20141204-6466-1qfaa9d/_test/_testmain.go:91 +0x81

goroutine 4 [semacquire]:
sync.runtime_Semacquire(0x18300350)
	/usr/local/lib/go/src/pkg/runtime/zsema_linux_386.c:165 +0x32
sync.(*WaitGroup).Wait(0x1834860c)
	/usr/local/lib/go/src/pkg/sync/waitgroup.go:109 +0xda
_/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Destroy(0x18348600)
	/tmp/d20141204-6466-1qfaa9d/solution.go:336 +0x85
_/tmp/d20141204-6466-1qfaa9d.TestStringMethods(0x1837b120)
	/tmp/d20141204-6466-1qfaa9d/solution_test.go:945 +0x7bd
testing.tRunner(0x1837b120, 0x81c2cc0)
	/usr/local/lib/go/src/pkg/testing/testing.go:353 +0x87
created by testing.RunTests
	/usr/local/lib/go/src/pkg/testing/testing.go:433 +0x684

goroutine 5 [select]:
_/tmp/d20141204-6466-1qfaa9d.func·001(0x812b128, 0xa, 0xd964b800, 0x45, 0x18348600, ...)
	/tmp/d20141204-6466-1qfaa9d/solution.go:51 +0x26e
created by _/tmp/d20141204-6466-1qfaa9d.(*ExpireMap).Set
	/tmp/d20141204-6466-1qfaa9d/solution.go:62 +0x191
exit status 2
FAIL	_/tmp/d20141204-6466-1qfaa9d	1.013s

История (1 версия и 0 коментара)

Шенай обнови решението на 18.11.2014 10:55 (преди над 3 години)

+package main
+
+import "fmt"
+import "sync"
+import "time"
+import "errors"
+import "strings"
+
+import "strconv"
+
+type ExpireObj struct {
+ Value interface{}
+ ExpireTime time.Time
+ Duration time.Duration
+}
+
+type ExpireMap struct {
+ Cache map[string]ExpireObj
+ ExpireChan chan string
+ QuitChan chan bool
+ WaitGroup sync.WaitGroup
+ sync.Mutex
+}
+
+//---------------------------------------------------------------------------------
+
+func NewExpireMap() *ExpireMap {
+ expireMap := new(ExpireMap)
+ expireMap.Cache = make(map[string]ExpireObj)
+ expireMap.ExpireChan = make(chan string, 10)
+ expireMap.QuitChan = make(chan bool, 10)
+ return expireMap
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Set(key string, value interface{}, expire time.Duration) {
+ em.Lock()
+ defer em.Unlock()
+
+ obj := new(ExpireObj)
+ obj.Value = value
+ obj.Duration = expire
+ obj.ExpireTime = time.Now().Add(expire)
+ em.Cache[key] = *obj
+
+ em.WaitGroup.Add(1)
+ go func(key string, expire time.Duration, em *ExpireMap) {
+ defer em.WaitGroup.Done()
+
+ select {
+ case <-em.QuitChan:
+ return
+ case <-time.After(expire):
+ value, ok := em.Cache[key]
+ if ok && (time.Now().After(value.ExpireTime) || time.Now().Equal(value.ExpireTime)) {
+ em.ExpireChan <- key
+ delete(em.Cache, key)
+ return
+ }
+ }
+ }(key, expire, em)
+}
+
+//---------------------------------------------------------------------------------
+func (em *ExpireMap) Get(key string) (interface{}, bool) {
+ em.Lock()
+ defer em.Unlock()
+
+ if contains := em.Contains(key); !contains {
+ return nil, false
+ }
+
+ value, _ := em.Cache[key]
+ return value.Value, true
+}
+
+//---------------------------------------------------------------------------------
+func (em *ExpireMap) GetInt(key string) (int, bool) {
+ value, ok := em.Get(key)
+ res, isInt := value.(int)
+
+ if !ok && !isInt {
+ return 0, false
+ }
+
+ return res, true
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) GetFloat64(key string) (float64, bool) {
+ value, ok := em.Get(key)
+ res, isFloat64 := value.(float64)
+
+ if !ok && !isFloat64 {
+ return 0.0, false
+ }
+
+ return res, true
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) GetString(key string) (string, bool) {
+ value, ok := em.Get(key)
+ str, isString := value.(string)
+
+ if !ok && !isString {
+ return "", false
+ }
+
+ return str, true
+}
+
+//---------------------------------------------------------------------------------
+func (em *ExpireMap) GetBool(key string) (bool, bool) {
+ value, ok := em.Get(key)
+ res, isBool := value.(bool)
+
+ if !ok && !isBool {
+ return false, false
+ }
+
+ return res, true
+}
+
+//---------------------------------------------------------------------------------
+func (em *ExpireMap) Expires(key string) (time.Time, bool) {
+ em.Lock()
+ defer em.Unlock()
+
+ if contains := em.Contains(key); !contains {
+ return time.Time{}, false
+ }
+
+ value, _ := em.Cache[key]
+ return value.ExpireTime, true
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Delete(key string) {
+ em.Lock()
+ defer em.Unlock()
+
+ delete(em.Cache, key)
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Contains(key string) bool {
+ value, ok := em.Cache[key]
+
+ if !ok {
+ return false
+ }
+
+ if time.Now().After(value.ExpireTime) || time.Now().Equal(value.ExpireTime) {
+ return false
+ }
+
+ return true
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Size() int {
+ em.Lock()
+ defer em.Unlock()
+
+ sz := 0
+ for _, value := range em.Cache {
+ if time.Now().After(value.ExpireTime) || time.Now().Equal(value.ExpireTime) {
+ sz++
+ }
+ }
+
+ return sz
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Increment(key string) error {
+ //em.Lock()
+
+ if contains := em.Contains(key); !contains {
+ return errors.New("No such key")
+ }
+
+ value := em.Cache[key]
+
+ switch value.Value.(type) {
+ case string:
+ if str, ok := value.Value.(string); ok {
+ if intValue, err := strconv.Atoi(str); err == nil {
+ delete(em.Cache, key)
+ intValue++
+ //em.Unlock()
+ em.Set(key, strconv.Itoa(intValue), value.Duration)
+ return nil
+ }
+ }
+ case int:
+ if intValue, ok := value.Value.(int); ok {
+ delete(em.Cache, key)
+ intValue++
+ //em.Unlock()
+ em.Set(key, intValue, value.Duration)
+ return nil
+ }
+ default:
+ //em.Unlock()
+ }
+
+ return errors.New("Value's type is not an int")
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Decrement(key string) error {
+ //em.Lock()
+ fmt.Println("enter increment with key")
+ fmt.Println(key)
+
+ if contains := em.Contains(key); !contains {
+ return errors.New("No such key")
+ }
+
+ value := em.Cache[key]
+
+ switch value.Value.(type) {
+ case string:
+ if str, ok := value.Value.(string); ok {
+ if intValue, err := strconv.Atoi(str); err == nil {
+ delete(em.Cache, key)
+ intValue--
+ //em.Unlock()
+ em.Set(key, strconv.Itoa(intValue), value.Duration)
+ return nil
+ }
+ }
+ case int:
+ if intValue, ok := value.Value.(int); ok {
+ delete(em.Cache, key)
+ intValue--
+ //em.Unlock()
+ em.Set(key, intValue, value.Duration)
+ return nil
+ }
+ default:
+ //em.Unlock()
+ }
+
+ return errors.New("Value's type is not an int")
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) ToUpper(key string) error {
+ em.Lock()
+ defer em.Unlock()
+
+ if contains := em.Contains(key); !contains {
+ return errors.New("No such key")
+ }
+
+ oldValue := em.Cache[key].Value
+
+ var str string
+ var ok bool
+ if str, ok = oldValue.(string); !ok {
+ return errors.New("Key value is not a string")
+ }
+
+ obj := new(ExpireObj)
+ *obj = em.Cache[key]
+ obj.Value = strings.ToUpper(str)
+ em.Cache[key] = *obj
+
+ return nil
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) ToLower(key string) error {
+ em.Lock()
+ defer em.Unlock()
+
+ if contains := em.Contains(key); !contains {
+ return errors.New("No such key")
+ }
+
+ oldValue := em.Cache[key].Value
+
+ var str string
+ var ok bool
+ if str, ok = oldValue.(string); !ok {
+ return errors.New("Key value is not a string")
+ }
+
+ obj := new(ExpireObj)
+ *obj = em.Cache[key]
+ obj.Value = strings.ToLower(str)
+ em.Cache[key] = *obj
+
+ return nil
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) ExpiredChan() <-chan string {
+ em.Lock()
+ defer em.Unlock()
+ c := make(<-chan string)
+ c = em.ExpireChan
+ return c
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Cleanup() {
+ em.Lock()
+ defer em.Unlock()
+
+ em.Cache = make(map[string]ExpireObj)
+}
+
+//---------------------------------------------------------------------------------
+
+func (em *ExpireMap) Destroy() {
+ em.Lock()
+ defer em.Unlock()
+ close(em.ExpireChan)
+ em.QuitChan <- true
+ em.WaitGroup.Wait()
+ close(em.QuitChan)
+ em = new(ExpireMap)
+}