diff --git a/.licenserc.yaml b/.licenserc.yaml
index 804a2b7..0b3d562 100644
--- a/.licenserc.yaml
+++ b/.licenserc.yaml
@@ -9,6 +9,7 @@ header:
paths-ignore:
- 'ast/asm.s' # empty file
+ - 'decoder/asm.s' # empty file
- 'encoder/asm.s' # empty file
- 'internal/caching/asm.s' # empty file
- 'internal/jit/asm.s' # empty file
diff --git a/README.md b/README.md
index 27f4656..9a90ad2 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
A blazingly fast JSON serializing & deserializing library, accelerated by JIT(just-in-time compiling) and SIMD(single-instruction-multi-data).
+**WARNING: This is still in alpha stage, use with care !**
+
## Benchmarks
For all sizes of json and all scenes of usage, Sonic performs almost best.
- Small (400B, 11 keys, 3 levels)
diff --git a/ast/node.go b/ast/node.go
index 1af30fb..4beef17 100644
--- a/ast/node.go
+++ b/ast/node.go
@@ -23,6 +23,7 @@ import (
`github.com/bytedance/sonic/internal/native/types`
`github.com/bytedance/sonic/internal/rt`
+ `github.com/bytedance/sonic/unquote`
)
const (
@@ -36,8 +37,9 @@ const (
)
const (
- V_RAW types.ValueType = 1 << 4
- V_NUMBER types.ValueType = 10
+ V_NODE_BASE types.ValueType = 32768
+ V_RAW types.ValueType = 1 << 16
+ V_NUMBER = V_NODE_BASE + 0
V_ARRAY_RAW = V_RAW | types.V_ARRAY
V_OBJECT_RAW = V_RAW | types.V_OBJECT
MASK_RAW = V_RAW - 1
@@ -631,7 +633,7 @@ func (self *Node) loadNextPair() (*Pair, types.ParsingError) {
/* check for escape sequence */
if njs.Ep != -1 {
- if key, err = UnquoteString(key); err != 0 {
+ if key, err = unquote.String(key); err != 0 {
return nil, err
}
}
diff --git a/ast/node_test.go b/ast/node_test.go
index 33d5e31..ff6ca7d 100644
--- a/ast/node_test.go
+++ b/ast/node_test.go
@@ -59,8 +59,8 @@ func TestMap(t *testing.T) {
assert.Equal(t, m, map[string]interface{}{
"a": float64(0),
"b": float64(1),
- "c": float64(-1.2),
- "d": float64(-1.2e-10),
+ "c": -1.2,
+ "d": -1.2e-10,
})
m1 := node.MapUseNumber()
assert.Equal(t, m1, map[string]interface{}{
@@ -79,9 +79,9 @@ func TestArray(t *testing.T) {
m := node.Array()
assert.Equal(t, m, []interface{}{
float64(0),
- float64(1),
- float64(-1.2),
- float64(-1.2e-10),
+ float64(1),
+ -1.2,
+ -1.2e-10,
})
m1 := node.ArrayUseNumber()
assert.Equal(t, m1, []interface{}{
diff --git a/ast/parser.go b/ast/parser.go
index 85536f7..2706934 100644
--- a/ast/parser.go
+++ b/ast/parser.go
@@ -17,12 +17,13 @@
package ast
import (
- `sync`
- `unsafe`
+ `sync`
+ `unsafe`
- `github.com/bytedance/sonic/internal/native`
- `github.com/bytedance/sonic/internal/native/types`
- `github.com/bytedance/sonic/internal/rt`
+ `github.com/bytedance/sonic/internal/native`
+ `github.com/bytedance/sonic/internal/native/types`
+ `github.com/bytedance/sonic/internal/rt`
+ `github.com/bytedance/sonic/unquote`
)
const _DEFAULT_NODE_CAP = 16
@@ -105,7 +106,7 @@ func (self *Parser) lspace(sp int) int {
func (self *Parser) decodeValue() (val types.JsonState) {
sv := (*rt.GoString)(unsafe.Pointer(&self.s))
- self.p = native.Value(sv.Ptr, sv.Len, self.p, &val)
+ self.p = native.Value(sv.Ptr, sv.Len, self.p, &val, 0)
return
}
@@ -188,7 +189,7 @@ func (self *Parser) decodeObject(ret []Pair) (Node, types.ParsingError) {
/* check for escape sequence */
if njs.Ep != -1 {
- if key, err = UnquoteString(key); err != 0 {
+ if key, err = unquote.String(key); err != 0 {
return Node{}, err
}
}
@@ -236,7 +237,7 @@ func (self *Parser) decodeString(iv int64, ep int) (Node, types.ParsingError) {
/* unquote the string */
buf := make([]byte, 0, len(s))
- err := unquoteBytes(s, &buf)
+ err := unquote.IntoBytes(s, &buf)
/* check for errors */
if err != 0 {
diff --git a/ast/parser_test.go b/ast/parser_test.go
index 9a69109..8968f0a 100644
--- a/ast/parser_test.go
+++ b/ast/parser_test.go
@@ -109,7 +109,7 @@ func TestParser_Basic(t *testing.T) {
runDecoderTest(t, `{}`, map[string]interface{}{})
runDecoderTest(t, `["asd", "123", true, false, null, 2.4, 1.2e15]`, []interface{}{"asd", "123", true, false, nil, 2.4, 1.2e15})
runDecoderTest(t, `{"asdf": "qwer", "zxcv": true}`, map[string]interface{}{"asdf": "qwer", "zxcv": true})
- runDecoderTest(t, `{"a": "123", "b": true, "c": false, "d": null, "e": 2.4, "f": 1.2e15, "g": 1}`, map[string]interface{}{"a":"123", "b":true, "c":false, "d":nil, "e":float64(2.4), "f":float64(1.2e15), "g":float64(1)})
+ runDecoderTest(t, `{"a": "123", "b": true, "c": false, "d": null, "e": 2.4, "f": 1.2e15, "g": 1}`, map[string]interface{}{"a":"123", "b":true, "c":false, "d":nil, "e": 2.4, "f": 1.2e15, "g":float64(1)})
runDecoderTestUseNumber(t, `null`, nil)
runDecoderTestUseNumber(t, `true`, true)
@@ -120,38 +120,38 @@ func TestParser_Basic(t *testing.T) {
runDecoderTestUseNumber(t, `-0`, float64(0))
runDecoderTestUseNumber(t, `123456`, float64(123456))
runDecoderTestUseNumber(t, `-12345`, float64(-12345))
- runDecoderTestUseNumber(t, `0.2`, float64(0.2))
- runDecoderTestUseNumber(t, `1.2`, float64(1.2))
- runDecoderTestUseNumber(t, `-0.2`, float64(-0.2))
- runDecoderTestUseNumber(t, `-1.2`, float64(-1.2))
- runDecoderTestUseNumber(t, `0e12`, float64(0e12))
- runDecoderTestUseNumber(t, `0e+12`, float64(0e+12))
- runDecoderTestUseNumber(t, `0e-12`, float64(0e-12))
- runDecoderTestUseNumber(t, `-0e12`, float64(-0e12))
- runDecoderTestUseNumber(t, `-0e+12`, float64(-0e+12))
- runDecoderTestUseNumber(t, `-0e-12`, float64(-0e-12))
- runDecoderTestUseNumber(t, `2e12`, float64(2e12))
- runDecoderTestUseNumber(t, `2E12`, float64(2e12))
- runDecoderTestUseNumber(t, `2e+12`, float64(2e+12))
- runDecoderTestUseNumber(t, `2e-12`, float64(2e-12))
- runDecoderTestUseNumber(t, `-2e12`, float64(-2e12))
- runDecoderTestUseNumber(t, `-2e+12`, float64(-2e+12))
- runDecoderTestUseNumber(t, `-2e-12`, float64(-2e-12))
- runDecoderTestUseNumber(t, `0.2e12`, float64(0.2e12))
- runDecoderTestUseNumber(t, `0.2e+12`, float64(0.2e+12))
- runDecoderTestUseNumber(t, `0.2e-12`, float64(0.2e-12))
- runDecoderTestUseNumber(t, `-0.2e12`, float64(-0.2e12))
- runDecoderTestUseNumber(t, `-0.2e+12`, float64(-0.2e+12))
- runDecoderTestUseNumber(t, `-0.2e-12`, float64(-0.2e-12))
- runDecoderTestUseNumber(t, `1.2e12`, float64(1.2e12))
- runDecoderTestUseNumber(t, `1.2e+12`, float64(1.2e+12))
- runDecoderTestUseNumber(t, `1.2e-12`, float64(1.2e-12))
- runDecoderTestUseNumber(t, `-1.2e12`, float64(-1.2e12))
- runDecoderTestUseNumber(t, `-1.2e+12`, float64(-1.2e+12))
- runDecoderTestUseNumber(t, `-1.2e-12`, float64(-1.2e-12))
- runDecoderTestUseNumber(t, `-1.2E-12`, float64(-1.2e-12))
- runDecoderTestUseNumber(t, `["asd", "123", true, false, null, 2.4, 1.2e15, 1]`, []interface{}{"asd", "123", true, false, nil, float64(2.4), float64(1.2e15), float64(1)})
- runDecoderTestUseNumber(t, `{"a": "123", "b": true, "c": false, "d": null, "e": 2.4, "f": 1.2e15, "g": 1}`, map[string]interface{}{"a":"123", "b":true, "c":false, "d":nil, "e":float64(2.4), "f":float64(1.2e15), "g":float64(1)})
+ runDecoderTestUseNumber(t, `0.2`, 0.2)
+ runDecoderTestUseNumber(t, `1.2`, 1.2)
+ runDecoderTestUseNumber(t, `-0.2`, -0.2)
+ runDecoderTestUseNumber(t, `-1.2`, -1.2)
+ runDecoderTestUseNumber(t, `0e12`, 0e12)
+ runDecoderTestUseNumber(t, `0e+12`, 0e+12)
+ runDecoderTestUseNumber(t, `0e-12`, 0e-12)
+ runDecoderTestUseNumber(t, `-0e12`, -0e12)
+ runDecoderTestUseNumber(t, `-0e+12`, -0e+12)
+ runDecoderTestUseNumber(t, `-0e-12`, -0e-12)
+ runDecoderTestUseNumber(t, `2e12`, 2e12)
+ runDecoderTestUseNumber(t, `2E12`, 2e12)
+ runDecoderTestUseNumber(t, `2e+12`, 2e+12)
+ runDecoderTestUseNumber(t, `2e-12`, 2e-12)
+ runDecoderTestUseNumber(t, `-2e12`, -2e12)
+ runDecoderTestUseNumber(t, `-2e+12`, -2e+12)
+ runDecoderTestUseNumber(t, `-2e-12`, -2e-12)
+ runDecoderTestUseNumber(t, `0.2e12`, 0.2e12)
+ runDecoderTestUseNumber(t, `0.2e+12`, 0.2e+12)
+ runDecoderTestUseNumber(t, `0.2e-12`, 0.2e-12)
+ runDecoderTestUseNumber(t, `-0.2e12`, -0.2e12)
+ runDecoderTestUseNumber(t, `-0.2e+12`, -0.2e+12)
+ runDecoderTestUseNumber(t, `-0.2e-12`, -0.2e-12)
+ runDecoderTestUseNumber(t, `1.2e12`, 1.2e12)
+ runDecoderTestUseNumber(t, `1.2e+12`, 1.2e+12)
+ runDecoderTestUseNumber(t, `1.2e-12`, 1.2e-12)
+ runDecoderTestUseNumber(t, `-1.2e12`, -1.2e12)
+ runDecoderTestUseNumber(t, `-1.2e+12`, -1.2e+12)
+ runDecoderTestUseNumber(t, `-1.2e-12`, -1.2e-12)
+ runDecoderTestUseNumber(t, `-1.2E-12`, -1.2e-12)
+ runDecoderTestUseNumber(t, `["asd", "123", true, false, null, 2.4, 1.2e15, 1]`, []interface{}{"asd", "123", true, false, nil, 2.4, 1.2e15, float64(1)})
+ runDecoderTestUseNumber(t, `{"a": "123", "b": true, "c": false, "d": null, "e": 2.4, "f": 1.2e15, "g": 1}`, map[string]interface{}{"a":"123", "b":true, "c":false, "d":nil, "e": 2.4, "f": 1.2e15, "g":float64(1)})
}
func TestLoads(t *testing.T) {
@@ -159,7 +159,7 @@ func TestLoads(t *testing.T) {
if e != 0 {
t.Fatal(e)
}
- assert.Equal(t, map[string]interface{}{"a": "123", "b": true, "c": false, "d": nil, "e": float64(2.4), "f": float64(1.2e15), "g": float64(1)}, i)
+ assert.Equal(t, map[string]interface{}{"a": "123", "b": true, "c": false, "d": nil, "e": 2.4, "f": 1.2e15, "g": float64(1)}, i)
_,i,e = LoadsUseNumber(`{"a": "123", "b": true, "c": false, "d": null, "e": 2.4, "f": 1.2e15, "g": 1}`)
if e != 0 {
t.Fatal(e)
diff --git a/ast/search.go b/ast/search.go
index 17c4537..7fb68e6 100644
--- a/ast/search.go
+++ b/ast/search.go
@@ -20,6 +20,7 @@ import (
`fmt`
`github.com/bytedance/sonic/internal/native/types`
+ `github.com/bytedance/sonic/unquote`
)
type Searcher struct {
@@ -113,7 +114,7 @@ func (self *Parser) searchKey(match string) types.ParsingError {
/* check for escape sequence */
if njs.Ep != -1 {
- if key, err = UnquoteString(key); err != 0 {
+ if key, err = unquote.String(key); err != 0 {
return err
}
}
diff --git a/ast/search_test.go b/ast/search_test.go
index f2bb240..f813749 100644
--- a/ast/search_test.go
+++ b/ast/search_test.go
@@ -92,13 +92,13 @@ func TestLoadIndex(t *testing.T) {
t.Fatal(err)
}
a := node.Index(3).Float64()
- assert.Equal(t, float64(-1.2e-10), a)
+ assert.Equal(t, -1.2e-10, a)
m := node.Array()
assert.Equal(t, m, []interface{}{
float64(0),
- float64(1),
- float64(-1.2),
- float64(-1.2e-10),
+ float64(1),
+ -1.2,
+ -1.2e-10,
})
}
diff --git a/ast/utils.go b/ast/utils.go
index fa5fa7e..318d89c 100644
--- a/ast/utils.go
+++ b/ast/utils.go
@@ -19,21 +19,9 @@ package ast
import (
`unsafe`
- `github.com/bytedance/sonic/internal/native`
- `github.com/bytedance/sonic/internal/native/types`
`github.com/bytedance/sonic/internal/rt`
)
-//go:nosplit
-func i64tof(v int64) float64 {
- return *(*float64)(unsafe.Pointer(&v))
-}
-
-//go:nosplit
-func f64toi(v float64) int64 {
- return *(*int64)(unsafe.Pointer(&v))
-}
-
//go:nosplit
func mem2ptr(s []byte) unsafe.Pointer {
return (*rt.GoSlice)(unsafe.Pointer(&s)).Ptr
@@ -51,25 +39,3 @@ func addr2str(p unsafe.Pointer, n int64) (s string) {
return
}
-func unquoteBytes(s string, m *[]byte) types.ParsingError {
- pos := -1
- slv := (*rt.GoSlice)(unsafe.Pointer(m))
- str := (*rt.GoString)(unsafe.Pointer(&s))
- ret := native.Unquote(str.Ptr, str.Len, slv.Ptr, &pos, 0)
-
- /* check for errors */
- if ret < 0 {
- return types.ParsingError(-ret)
- }
-
- /* update the length */
- slv.Len = ret
- return 0
-}
-
-func UnquoteString(s string) (ret string, err types.ParsingError) {
- mm := make([]byte, 0, len(s))
- err = unquoteBytes(s, &mm)
- ret = rt.Mem2Str(mm)
- return
-}
diff --git a/decode_test.go b/decode_test.go
index 3d545ce..f56806f 100644
--- a/decode_test.go
+++ b/decode_test.go
@@ -2214,10 +2214,10 @@ func TestUnmarshalErrorAfterMultipleJSON(t *testing.T) {
err error
}{{
in: `1 false null :`,
- err: (&JsonSyntaxError{"invalid character ':' looking for beginning of value", 14}).err(),
+ err: (&JsonSyntaxError{"invalid character ':' looking for beginning of value", 13}).err(),
}, {
in: `1 [] [,]`,
- err: (&JsonSyntaxError{"invalid character ',' looking for beginning of value", 7}).err(),
+ err: (&JsonSyntaxError{"invalid character ',' looking for beginning of value", 6}).err(),
}, {
in: `1 [] [true:]`,
err: (&JsonSyntaxError{"invalid character ':' after array element", 10}).err(),
diff --git a/decoder/asm.s b/decoder/asm.s
new file mode 100644
index 0000000..e69de29
diff --git a/decoder/assembler_amd64.go b/decoder/assembler_amd64.go
index 3e85b81..6547361 100644
--- a/decoder/assembler_amd64.go
+++ b/decoder/assembler_amd64.go
@@ -376,7 +376,6 @@ var (
_I_int8 , _T_int8 = rtype(reflect.TypeOf(int8(0)))
_I_int16 , _T_int16 = rtype(reflect.TypeOf(int16(0)))
_I_int32 , _T_int32 = rtype(reflect.TypeOf(int32(0)))
- _ , _T_int64 = rtype(reflect.TypeOf(int64(0)))
_I_uint8 , _T_uint8 = rtype(reflect.TypeOf(uint8(0)))
_I_uint16 , _T_uint16 = rtype(reflect.TypeOf(uint16(0)))
_I_uint32 , _T_uint32 = rtype(reflect.TypeOf(uint32(0)))
@@ -865,24 +864,21 @@ var (
_F_mapassign_fast64 = jit.Func(mapassign_fast64)
)
-var (
- _F_decodeTypedPointer obj.Addr
- _F_FieldMap_GetCaseInsensitive obj.Addr
-)
-
var (
_F_lspace = jit.Imm(int64(native.S_lspace))
_F_strhash = jit.Imm(int64(caching.S_strhash))
)
var (
+ _F_b64decode = jit.Imm(int64(_subr__b64decode))
_F_skip_array = jit.Imm(int64(native.S_skip_array))
_F_skip_object = jit.Imm(int64(native.S_skip_object))
)
var (
- _F_b64decode = jit.Imm(int64(_subr__b64decode))
- _F_decode_value = jit.Imm(int64(_subr_decode_value))
+ _F_decodeGeneric obj.Addr
+ _F_decodeTypedPointer obj.Addr
+ _F_FieldMap_GetCaseInsensitive obj.Addr
)
const (
@@ -892,19 +888,24 @@ const (
)
func init() {
+ _F_decodeGeneric = jit.Func(decodeGeneric)
_F_decodeTypedPointer = jit.Func(decodeTypedPointer)
_F_FieldMap_GetCaseInsensitive = jit.Func((*caching.FieldMap).GetCaseInsensitive)
}
func (self *_Assembler) _asm_OP_any(_ *_Instr) {
- self.save(_VP) // SAVE VP
- self.Emit("MOVQ" , _ARG_fv, _VP) // MOVQ fv, VP
- self.call(_F_decode_value) // CALL decode_value
- self.load(_VP) // LOAD VP
- self.Emit("TESTQ", _EP, _EP) // TESTQ EP, EP
- self.Sjmp("JNZ" , _LB_parsing_error) // JNZ _parsing_error
- self.Emit("MOVQ" , _R8, jit.Ptr(_VP, 0)) // MOVQ R8, (VP)
- self.Emit("MOVQ" , _R9, jit.Ptr(_VP, 8)) // MOVQ R9, 8(VP)
+ self.Emit("MOVQ" , _ARG_fv, _AX) // MOVQ fv, AX
+ self.Emit("MOVQ" , _IP, jit.Ptr(_SP, 0)) // MOVQ IP, (SP)
+ self.Emit("MOVQ" , _IL, jit.Ptr(_SP, 8)) // MOVQ IL, 8(SP)
+ self.Emit("MOVQ" , _IC, jit.Ptr(_SP, 16)) // MOVQ IC, 16(SP)
+ self.Emit("MOVQ" , _AX, jit.Ptr(_SP, 24)) // MOVQ AX, 24(SP)
+ self.call_go(_F_decodeGeneric) // CALL_GO decodeGeneric
+ self.Emit("MOVQ" , jit.Ptr(_SP, 32), _IC) // MOVQ 32(SP), IC
+ self.Emit("MOVOU", jit.Ptr(_SP, 40), _X0) // MOVOU 40(SP), X0
+ self.Emit("MOVQ" , jit.Ptr(_SP, 56), _EP) // MOVQ 56(SP), EP
+ self.Emit("TESTQ", _EP, _EP) // TESTQ ET, ET
+ self.Sjmp("JNZ" , _LB_parsing_error) // JNZ _parsing_error
+ self.Emit("MOVOU", _X0, jit.Ptr(_VP, 0)) // MOVOU X0, (VP)
}
func (self *_Assembler) _asm_OP_str(_ *_Instr) {
diff --git a/decoder/errors.go b/decoder/errors.go
index 6cb3369..ae5f07d 100644
--- a/decoder/errors.go
+++ b/decoder/errors.go
@@ -109,8 +109,3 @@ func error_value(value string, vtype reflect.Type) error {
Value : value,
}
}
-
-//go:nosplit
-func throw_invalid_type(vt types.ValueType) {
- throw(fmt.Sprintf("invalid value type: %d", vt))
-}
diff --git a/decoder/generic.go b/decoder/generic.go
new file mode 100644
index 0000000..a4f2299
--- /dev/null
+++ b/decoder/generic.go
@@ -0,0 +1,284 @@
+/*
+ * Copyright 2021 ByteDance Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package decoder
+
+import (
+ `encoding/json`
+ `reflect`
+ `sync`
+ `unsafe`
+
+ `github.com/bytedance/sonic/internal/native`
+ `github.com/bytedance/sonic/internal/native/types`
+ `github.com/bytedance/sonic/internal/rt`
+ `github.com/bytedance/sonic/unquote`
+)
+
+const (
+ _S_val = iota
+ _S_arr
+ _S_arr_0
+ _S_obj
+ _S_obj_x
+ _S_obj_delim
+)
+
+var (
+ mapVal = map[string]interface{}(nil)
+ mapType = rt.UnpackType(reflect.TypeOf(mapVal))
+)
+
+type _GenericDecoder struct {
+ types.StateMachine
+ Vp [types.MAX_RECURSE]*interface{}
+}
+
+func (self *_GenericDecoder) val(v interface{}) types.ParsingError {
+ sp := self.Sp
+ vt := self.Vt[sp]
+
+ /* must be a value or the first element of an array */
+ if vt != _S_val && vt != _S_arr_0 {
+ return types.ERR_INVALID_CHAR
+ }
+
+ /* set the value */
+ self.Sp--
+ *self.Vp[sp] = v
+ return 0
+}
+
+func (self *_GenericDecoder) exec(s string, i int, f uint64) (int, interface{}, types.ParsingError) {
+ var rv interface{}
+ var ss types.JsonState
+ var ex types.ParsingError
+
+ /* initialize the state machine */
+ self.Sp = 0
+ self.Vp[0] = &rv
+ self.Vt[0] = _S_val
+
+ /* string length and pointer */
+ slen := len(s)
+ sbuf := (*rt.GoString)(unsafe.Pointer(&s)).Ptr
+
+ /* run until the state goes empty */
+ for self.Sp >= 0 {
+ switch i = native.Value(sbuf, slen, i, &ss, 1); ss.Vt {
+ default: {
+ return i, nil, types.ParsingError(-ss.Vt)
+ }
+
+ /* EOF */
+ case types.V_EOF: {
+ return i, nil, types.ERR_EOF
+ }
+
+ /* null */
+ case types.V_NULL: {
+ if ex = self.val(nil); ex != 0 {
+ return i - 4, nil, ex
+ }
+ }
+
+ /* boolean true */
+ case types.V_TRUE: {
+ if ex = self.val(true); ex != 0 {
+ return i - 4, nil, ex
+ }
+ }
+
+ /* boolean false */
+ case types.V_FALSE: {
+ if ex = self.val(false); ex != 0 {
+ return i - 5, nil, ex
+ }
+ }
+
+ /* strings */
+ case types.V_STRING: {
+ p := i - 1
+ v := s[ss.Iv:p]
+
+ /* check for escape sequence */
+ if ss.Ep != -1 {
+ if v, ex = unquote.String(v); ex != 0 {
+ return int(ss.Iv) - 1, nil, ex
+ }
+ }
+
+ /* check for object key */
+ if vt := self.Vt[self.Sp]; vt != _S_obj && vt != _S_obj_x {
+ if ex = self.val(v); ex != 0 {
+ return int(ss.Iv) - 1, nil, ex
+ } else {
+ continue
+ }
+ }
+
+ /* get the map */
+ ef := rt.UnpackEface(*self.Vp[self.Sp])
+ mp := ef.Value
+
+ /* add the delimiter */
+ self.Sp++
+ self.Vt[self.Sp] = _S_obj_delim
+ self.Vp[self.Sp] = (*interface{})(mapassign_faststr(mapType, mp, v))
+ }
+
+ /* nested arrays */
+ case types.V_ARRAY: {
+ vt := self.Vt[self.Sp]
+ vv := make([]interface{}, 1, 16)
+
+ /* must be a value */
+ if vt != _S_val && vt != _S_arr_0 {
+ return i - 1, nil, types.ERR_INVALID_CHAR
+ }
+
+ /* set the value */
+ self.Vt[self.Sp] = _S_arr
+ *self.Vp[self.Sp] = vv
+
+ /* add the first element */
+ self.Sp++
+ self.Vt[self.Sp] = _S_arr_0
+ self.Vp[self.Sp] = &vv[0]
+ }
+
+ /* nested objects */
+ case types.V_OBJECT: {
+ vt := self.Vt[self.Sp]
+ vv := map[string]interface{}{}
+
+ /* must be a value */
+ if vt != _S_val && vt != _S_arr_0 {
+ return i - 1, nil, types.ERR_INVALID_CHAR
+ }
+
+ /* set the value */
+ self.Vt[self.Sp] = _S_obj
+ *self.Vp[self.Sp] = vv
+ }
+
+ /* floating point numbers */
+ case types.V_DOUBLE: {
+ if (f & (1 << _F_use_number)) == 0 {
+ if ex = self.val(ss.Dv); ex != 0 {
+ return ss.Ep, nil, ex
+ }
+ } else {
+ if ex = self.val(json.Number(s[ss.Ep:i])); ex != 0 {
+ return ss.Ep, nil, ex
+ }
+ }
+ }
+
+ /* integers */
+ case types.V_INTEGER: {
+ if (f & (1 << _F_use_number)) != 0 {
+ if ex = self.val(json.Number(s[ss.Ep:i])); ex != 0 {
+ return ss.Ep, nil, ex
+ }
+ } else if (f & (1 << _F_use_int64)) == 0 {
+ if ex = self.val(float64(ss.Iv)); ex != 0 {
+ return ss.Ep, nil, ex
+ }
+ } else {
+ if ex = self.val(ss.Iv); ex != 0 {
+ return ss.Ep, nil, ex
+ }
+ }
+ }
+
+ /* key separator ':' */
+ case types.V_KEY_SEP: {
+ if self.Vt[self.Sp] == _S_obj_delim {
+ self.object_elem()
+ } else {
+ return i - 1, nil, types.ERR_INVALID_CHAR
+ }
+ }
+
+ /* element separator ',' */
+ case types.V_ELEM_SEP: {
+ switch self.Vt[self.Sp] {
+ case _S_obj : self.Vt[self.Sp] = _S_obj_x
+ case _S_arr : self.array_push(self.Vp[self.Sp])
+ default : return i - 1, nil, types.ERR_INVALID_CHAR
+ }
+ }
+
+ /* array end ']' */
+ case types.V_ARRAY_END: {
+ switch self.Vt[self.Sp] {
+ case _S_arr : self.Sp--
+ case _S_arr_0 : self.array_end()
+ default : return i - 1, nil, types.ERR_INVALID_CHAR
+ }
+ }
+
+ /* object end '}' */
+ case types.V_OBJECT_END: {
+ if self.Vt[self.Sp] == _S_obj {
+ self.Sp--
+ } else {
+ return i - 1, nil, types.ERR_INVALID_CHAR
+ }
+ }
+ }
+ }
+
+ /* all done */
+ return i, rv, 0
+}
+
+func (self *_GenericDecoder) array_end() {
+ (*rt.GoSlice)((*rt.GoEface)(unsafe.Pointer(self.Vp[self.Sp - 1])).Value).Len = 0
+ self.Sp -= 2
+}
+
+func (self *_GenericDecoder) array_add(v *interface{}) *interface{} {
+ vv := (*[]interface{})((*rt.GoEface)(unsafe.Pointer(v)).Value)
+ nb := len(*vv)
+ *vv = append(*vv, nil)
+ return &(*vv)[nb]
+}
+
+func (self *_GenericDecoder) array_push(v *interface{}) {
+ self.Sp++
+ self.Vt[self.Sp] = _S_val
+ self.Vp[self.Sp] = self.array_add(v)
+}
+
+func (self *_GenericDecoder) object_elem() {
+ self.Vt[self.Sp] = _S_val
+ self.Vt[self.Sp - 1] = _S_obj
+}
+
+var decoderPool = sync.Pool {
+ New: func() interface{} {
+ return new(_GenericDecoder)
+ },
+}
+
+func decodeGeneric(s string, i int, f uint64) (p int, v interface{}, e types.ParsingError) {
+ dec := decoderPool.Get().(*_GenericDecoder)
+ p, v, e = dec.exec(s, i, f)
+ decoderPool.Put(dec)
+ return
+}
diff --git a/decoder/generic_amd64.go b/decoder/generic_amd64.go
deleted file mode 100644
index a0f4a6d..0000000
--- a/decoder/generic_amd64.go
+++ /dev/null
@@ -1,358 +0,0 @@
-/*
- * Copyright 2021 ByteDance Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package decoder
-
-import (
- `reflect`
- `unsafe`
-
- `github.com/bytedance/sonic/internal/jit`
- `github.com/bytedance/sonic/internal/native`
- `github.com/bytedance/sonic/internal/native/types`
- `github.com/bytedance/sonic/internal/rt`
- `github.com/twitchyliquid64/golang-asm/obj`
-)
-
-const (
- _VD_args = 56 // 56 bytes for passing arguments to other Go functions
- _VD_saves = 40 // 40 bytes for saving the registers before CALL instructions
- _VD_locals = 48 // 48 bytes for local variables
-)
-
-const (
- _VD_offs = _VD_args + _VD_saves + _VD_locals
- _VD_size = _VD_offs + 8 // 8 bytes for the parent frame pointer
-)
-
-const (
- _LB_done = "_done"
- _LB_esc_error = "_esc_error"
- _LB_type_error = "_type_error"
- _LB_value_error = "_value_error"
- _LB_switch_table = "_switch_table"
-)
-
-var (
- _RT = jit.Reg("R8")
- _RV = jit.Reg("R9")
-)
-
-var (
- _VAR_ss_Sp = jit.Ptr(_SP, _VD_args + _VD_saves)
- _VAR_ss_Sn = jit.Ptr(_SP, _VD_args + _VD_saves + 8)
-)
-
-var (
- _VAR_vv = _VAR_vv_Vt
- _VAR_vv_Vt = jit.Ptr(_SP, _VD_args + _VD_saves + 24)
- _VAR_vv_Dv = jit.Ptr(_SP, _VD_args + _VD_saves + 32)
- _VAR_vv_Iv = jit.Ptr(_SP, _VD_args + _VD_saves + 40)
- _VAR_vv_Ep = jit.Ptr(_SP, _VD_args + _VD_saves + 48)
-)
-
-//go:noescape
-//goland:noinspection GoUnusedParameter
-func decodeArray() unsafe.Pointer
-
-//go:noescape
-//goland:noinspection GoUnusedParameter
-func decodeObject() unsafe.Pointer
-
-type _ValueDecoder struct {
- jit.BaseAssembler
-}
-
-func (self *_ValueDecoder) load() uintptr {
- self.Init(self.compile)
- return *(*uintptr)(self.Load("decode_value", _VD_size, 0))
-}
-
-func (self *_ValueDecoder) compile() {
- self.prologue()
- self.instrs()
- self.epilogue()
- self.errors()
- self.tables()
-}
-
-func (self *_ValueDecoder) epilogue() {
- self.Link(_LB_done) // _done:
- self.Emit("XORL", _EP, _EP) // XORL EP, EP
- self.Link(_LB_error) // _error:
- self.Emit("MOVQ", jit.Ptr(_SP, _VD_offs), _BP) // MOVQ _VD_offs(SP), BP
- self.Emit("ADDQ", jit.Imm(_VD_size), _SP) // ADDQ $_VD_size, SP
- self.Emit("RET")
-}
-
-func (self *_ValueDecoder) prologue() {
- self.Emit("SUBQ", jit.Imm(_VD_size), _SP) // SUBQ $_VD_size, SP
- self.Emit("MOVQ", _BP, jit.Ptr(_SP, _VD_offs)) // MOVQ BP, _VD_offs(SP)
- self.Emit("LEAQ", jit.Ptr(_SP, _VD_offs), _BP) // LEAQ _VD_offs(SP), BP
-}
-
-/** Decoder Assembler **/
-
-var (
- _Vp_zero = unsafe.Pointer(&struct{}{})
- _Vp_true = rt.UnpackEface(true).Value
- _Vp_false = rt.UnpackEface(false).Value
-)
-
-var (
- _V_max = jit.Imm(int64(types.V_MAX))
- _V_eof = jit.Imm(int64(types.ERR_EOF))
- _F_value = jit.Imm(int64(native.S_value))
-)
-
-var (
- _V_zero = jit.Imm(int64(uintptr(_Vp_zero)))
- _V_true = jit.Imm(int64(uintptr(_Vp_true)))
- _V_false = jit.Imm(int64(uintptr(_Vp_false)))
-)
-
-var (
- _T_bool = jit.Type(reflect.TypeOf(true))
- _T_string = jit.Type(reflect.TypeOf(""))
- _T_float64 = jit.Type(reflect.TypeOf(0.0))
- _T_json_Number = jit.Type(jsonNumberType)
-)
-
-var (
- _T_iface_sl = jit.Type(reflect.TypeOf([]interface{}(nil)))
- _T_iface_map = jit.Type(reflect.TypeOf(map[string]interface{}(nil)))
-)
-
-var (
- _F_convTslice = jit.Func(convTslice)
- _F_convTstring = jit.Func(convTstring)
-)
-
-var (
- _F_decodeArray = jit.Func(decodeArray)
- _F_decodeObject = jit.Func(decodeObject)
- _F_throw_invalid_type = jit.Func(throw_invalid_type)
-)
-
-const (
- _SW_case_V_EOF = _LB_error
- _SW_case_V_NULL = _LB_done
- _SW_case_V_TRUE = "_case_V_TRUE"
- _SW_case_V_FALSE = "_case_V_FALSE"
- _SW_case_V_ARRAY = "_case_V_ARRAY"
- _SW_case_V_OBJECT = "_case_V_OBJECT"
- _SW_case_V_STRING = "_case_V_STRING"
- _SW_case_V_DOUBLE = "_case_V_DOUBLE"
- _SW_case_V_INTEGER = "_case_V_INTEGER"
-)
-
-func (self *_ValueDecoder) call(pc obj.Addr) {
- self.Emit("MOVQ", pc, _AX) // MOVQ ${pc}, AX
- self.Rjmp("CALL", _AX) // CALL AX
-}
-
-func (self *_ValueDecoder) call_go(pc obj.Addr) {
- self.Emit("MOVQ", _IP, jit.Ptr(_SP, _VD_args)) // MOVQ IP, args+0(SP)
- self.Emit("MOVQ", _IL, jit.Ptr(_SP, _VD_args + 8)) // MOVQ IL, args+8(SP)
- self.Emit("MOVQ", _IC, jit.Ptr(_SP, _VD_args + 16)) // MOVQ IC, args+16(SP)
- self.Emit("MOVQ", _ST, jit.Ptr(_SP, _VD_args + 24)) // MOVQ ST, args+24(SP)
- self.Emit("MOVQ", _VP, jit.Ptr(_SP, _VD_args + 32)) // MOVQ VP, args+24(SP)
- self.call(pc)
- self.Emit("MOVQ", jit.Ptr(_SP, _VD_args), _IP) // MOVQ args+0(SP), IP
- self.Emit("MOVQ", jit.Ptr(_SP, _VD_args + 8), _IL) // MOVQ args+8(SP), IL
- self.Emit("MOVQ", jit.Ptr(_SP, _VD_args + 16), _IC) // MOVQ args+16(SP), IC
- self.Emit("MOVQ", jit.Ptr(_SP, _VD_args + 24), _ST) // MOVQ args+24(SP), ST
- self.Emit("MOVQ", jit.Ptr(_SP, _VD_args + 32), _VP) // MOVQ args+32(SP), VP
-}
-
-func (self *_ValueDecoder) errors() {
- self.Link(_LB_esc_error) // _esc_error:
- self.Emit("MOVQ", _VAR_ss_Sn, _CX) // MOVQ ss.Sn, CX
- self.Emit("SUBQ", _VAR_vv_Ep, _CX) // SUBQ vv.Ep, CX
- self.Emit("SUBQ", _CX, _IC) // SUBQ CX, IC
- self.Emit("SUBQ", jit.Imm(1), _IC) // SUBQ $1, IC
- self.Link(_LB_value_error) // _value_error:
- self.Emit("NEGQ", _AX) // NEGQ AX
- self.Emit("MOVQ", _AX, _EP) // MOVQ AX, EP
- self.Sjmp("JMP" , _LB_error) // JMP _error
- self.Link(_LB_type_error) // _type_error:
- self.Emit("MOVQ", _AX, jit.Ptr(_SP, 0)) // MOVQ AX, (SP)
- self.call(_F_throw_invalid_type) // CALL throw_invalid_type
- self.Emit("UD2") // UD2
-}
-
-func (self *_ValueDecoder) tables() {
- self.Link(_LB_switch_table) // _switch_table:
- self.Sref(_SW_case_V_EOF, 0) // SREF &_error, $0
- self.Sref(_SW_case_V_NULL, -4) // SREF &_done, $-4
- self.Sref(_SW_case_V_TRUE, -8) // SREF &_case_V_TRUE, $-8
- self.Sref(_SW_case_V_FALSE, -12) // SREF &_case_V_FALSE, $-12
- self.Sref(_SW_case_V_ARRAY, -16) // SREF &_case_V_ARRAY, $-16
- self.Sref(_SW_case_V_OBJECT, -20) // SREF &_case_V_OBJECT, $-20
- self.Sref(_SW_case_V_STRING, -24) // SREF &_case_V_STRING, $-24
- self.Sref(_SW_case_V_DOUBLE, -28) // SREF &_case_V_DOUBLE, $-28
- self.Sref(_SW_case_V_INTEGER, -32) // SREF &_case_V_INTEGER, $-32
-}
-
-func (self *_ValueDecoder) instrs() {
- self.Emit("MOVQ", _IP, _DI) // MOVQ IP, DI
- self.Emit("MOVQ", _IL, _SI) // MOVQ IL, SI
- self.Emit("MOVQ", _IC, _DX) // MOVQ IC, DX
- self.Emit("LEAQ", _VAR_vv, _CX) // LEAQ vv, CX
- self.call(_F_value) // CALL value
- self.Emit("MOVQ", _AX, _IC) // MOVQ AX, IC
- self.Emit("MOVQ", _VAR_vv_Vt, _AX) // MOVQ vv.Vt, AX
-
- /* check for errors & type range */
- self.Emit("TESTQ", _AX, _AX) // TESTQ AX, AX
- self.Sjmp("JS" , _LB_value_error) // JS _value_error
- self.Sjmp("JZ" , _LB_type_error) // JZ _type_error
- self.Emit("CMPQ" , _AX, _V_max) // CMPQ AX, ${native.V_MAX}
- self.Sjmp("JA" , _LB_type_error) // JA _type_error
- self.Emit("XORL" , _RT, _RT) // XORL RT, RT
- self.Emit("XORL" , _RV, _RV) // XORL RV, RV
- self.Emit("MOVQ" , _V_eof, _EP) // MOVQ ${native.ERR_EOF}, EP
-
- /* jump table selector */
- self.Byte(0x48, 0x8d, 0x3d) // LEAQ ?(PC), DI
- self.Sref(_LB_switch_table, 4) // .... &_switch_table
- self.Emit("MOVLQSX", jit.Sib(_DI, _AX, 4, -4), _AX) // MOVLQSX -4(DI)(AX*4), AX
- self.Emit("ADDQ" , _DI, _AX) // ADDQ DI, AX
- self.Rjmp("JMP" , _AX) // JMP AX
-
- /* V_TRUE */
- self.Link(_SW_case_V_TRUE)
- self.Emit("MOVQ", _T_bool, _RT) // MOVQ ${type(bool)}, RT
- self.Emit("MOVQ", _V_true, _RV) // MOVQ ${&true}, RV
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* V_FALSE */
- self.Link(_SW_case_V_FALSE)
- self.Emit("MOVQ", _T_bool, _RT) // MOVQ ${type(bool)}, RT
- self.Emit("MOVQ", _V_false, _RV) // MOVQ ${&false}, RV
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* V_ARRAY */
- self.Link(_SW_case_V_ARRAY)
- self.call(_F_decodeArray) // CALL decodeArray
- self.Emit("MOVQ" , _V_zero, _CX) // MOVQ ${zero}, CX
- self.Emit("TESTQ" , _AX, _AX) // TESTQ AX, AX
- self.Sjmp("JS" , _LB_value_error) // JS _value_error
- self.Emit("CMOVQEQ", _CX, _RV) // CMOVQEQ CX, RV
- self.Emit("MOVQ" , _RV, jit.Ptr(_SP, 0)) // MOVQ RV, (SP)
- self.Emit("MOVQ" , _AX, jit.Ptr(_SP, 8)) // MOVQ AX, 8(SP)
- self.Emit("MOVQ" , _AX, jit.Ptr(_SP, 16)) // MOVQ AX, 16(SP)
- self.call_go(_F_convTslice) // CALL_GO convTslice
- self.Emit("MOVQ" , _T_iface_sl, _RT) // MOVQ ${type([]interface{})}, RT
- self.Emit("MOVQ" , jit.Ptr(_SP, 24), _RV) // MOVQ 24(SP), RV
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* V_OBJECT */
- self.Link(_SW_case_V_OBJECT)
- self.call(_F_decodeObject) // CALL decodeObject
- self.Emit("TESTQ", _AX, _AX) // TESTQ AX, AX
- self.Sjmp("JNZ" , _LB_value_error) // JNZ _value_error
- self.Emit("MOVQ" , _T_iface_map, _RT) // MOVQ ${type(map[string]interface{})}, RT
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* V_STRING */
- self.Link(_SW_case_V_STRING)
- self.Emit("MOVQ" , _VAR_vv_Iv, _CX) // MOVQ vv.Iv, CX
- self.Emit("MOVQ" , _IP, _DI) // MOVQ IP, DI
- self.Emit("MOVQ" , _IC, _SI) // MOVQ IC, SI
- self.Emit("ADDQ" , _CX, _DI) // ADDQ CX, DI
- self.Emit("SUBQ" , _CX, _SI) // SUBQ CX, SI
- self.Emit("SUBQ" , jit.Imm(1), _SI) // SUBQ $1, SI
- self.Emit("CMPQ" , _VAR_vv_Ep, jit.Imm(-1)) // CMPQ vv.Ep, $-1
- self.Sjmp("JE" , "_noescape") // JE _noescape
- self.Emit("XORL" , _AX, _AX) // XORL AX, AX
- self.Emit("MOVQ" , _T_byte, _CX) // MOVQ ${type(byte)}, CX
- self.Emit("MOVQ" , _DI, _VAR_ss_Sp) // MOVQ DI, ss.Sp
- self.Emit("MOVQ" , _SI, _VAR_ss_Sn) // MOVQ SI, ss.Sn
- self.Emit("MOVQ" , _SI, jit.Ptr(_SP, 0)) // MOVQ SI, (SP)
- self.Emit("MOVQ" , _CX, jit.Ptr(_SP, 8)) // MOVQ CX, 8(SP)
- self.Emit("MOVQ" , _AX, jit.Ptr(_SP, 16)) // MOVQ AX, 16(SP)
- self.call_go(_F_mallocgc) // CALL_GO mallocgc
- self.Emit("MOVQ" , _VAR_ss_Sp, _DI) // MOVQ ss.Sp, DI
- self.Emit("MOVQ" , _VAR_ss_Sn, _SI) // MOVQ ss.Sn, SI
- self.Emit("MOVQ" , jit.Ptr(_SP, 24), _DX) // MOVQ 24(SP), DX
- self.Emit("MOVQ" , _DX, _VAR_ss_Sp) // MOVQ DX, ss.Sp
- self.Emit("LEAQ" , _VAR_vv_Ep, _CX) // LEAQ vv.Ep, CX
- self.Emit("XORL" , _R8, _R8) // XORL R8, R8
- self.Emit("BTQ" , jit.Imm(_F_disable_urc), _VP) // BTQ ${_F_disable_urc}, VP
- self.Emit("SETCC", _R8) // SETCC R8
- self.Emit("SHLQ" , jit.Imm(types.B_UNICODE_REPLACE), _R8) // SHLQ ${types.B_UNICODE_REPLACE}, R8
- self.call(_F_unquote) // CALL unquote
- self.Emit("TESTQ", _AX, _AX) // TESTQ AX, AX
- self.Sjmp("JS" , _LB_esc_error) // JS _esc_error
- self.Emit("MOVQ" , _AX, _SI) // MOVQ AX, SI
- self.Emit("MOVQ" , _VAR_ss_Sp, _DI) // MOVQ ss.Sp, DI
- self.Link("_noescape") // _noescape:
- self.Emit("MOVQ" , _DI, jit.Ptr(_SP, 0)) // MOVQ DI, (SP)
- self.Emit("MOVQ" , _SI, jit.Ptr(_SP, 8)) // MOVQ SI, 8(SP)
- self.call_go(_F_convTstring) // CALL_GO convTstring
- self.Emit("MOVQ" , _T_string, _RT) // MOVQ ${type(string)}, RT
- self.Emit("MOVQ" , jit.Ptr(_SP, 16), _RV) // MOVQ 16(SP), RV
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* V_DOUBLE */
- self.Link(_SW_case_V_DOUBLE)
- self.Emit("BTQ" , jit.Imm(_F_use_number), _VP) // BTQ ${_F_use_number}, VP
- self.Sjmp("JC" , "_use_number") // JC _use_number
- self.Emit("MOVSD", _VAR_vv_Dv, _X0) // MOVSD st.Dv, X0
- self.Emit("MOVSD", _X0, jit.Ptr(_SP, 0)) // MOVSD X0, (SP)
- self.call_go(_F_convT64) // CALL_GO convT64
- self.Emit("MOVQ" , _T_float64, _RT) // MOVQ ${type(float64)}, RT
- self.Emit("MOVQ" , jit.Ptr(_SP, 8), _RV) // MOVQ 8(SP), RV
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* V_INTEGER */
- self.Link(_SW_case_V_INTEGER)
- self.Emit("BTQ" , jit.Imm(_F_use_int64), _VP) // BTQ ${_F_use_int64}, VP
- self.Sjmp("JNC" , _SW_case_V_DOUBLE) // JNC _case_V_DOUBLE
- self.Emit("MOVQ", _VAR_vv_Iv, _X0) // MOVQ st.Iv, AX
- self.Emit("MOVQ", _X0, jit.Ptr(_SP, 0)) // MOVQ AX, (SP)
- self.call_go(_F_convT64) // CALL_GO convT64
- self.Emit("MOVQ", jit.Gtype(_T_int64), _RT) // MOVQ ${type(int64)}, RT
- self.Emit("MOVQ", jit.Ptr(_SP, 8), _RV) // MOVQ 8(SP), RV
- self.Sjmp("JMP" , _LB_done) // JMP _done
-
- /* case when `UseNumber` is set */
- self.Link("_use_number") // _use_number:
- self.Emit("MOVQ", _VAR_vv_Ep, _SI) // MOVQ ${p}, SI
- self.Emit("LEAQ", jit.Sib(_IP, _SI, 1, 0), _DI) // LEAQ (IP)(SI), DI
- self.Emit("NEGQ", _SI) // NEGQ SI
- self.Emit("LEAQ", jit.Sib(_IC, _SI, 1, 0), _SI) // LEAQ (IC)(SI), SI
- self.Emit("MOVQ", _DI, jit.Ptr(_SP, 0)) // MOVQ DI, (SP)
- self.Emit("MOVQ", _SI, jit.Ptr(_SP, 8)) // MOVQ SI, 8(SP)
- self.call_go(_F_convTstring) // CALL_GO convTstring
- self.Emit("MOVQ", _T_json_Number, _RT) // MOVQ ${type(json.Number)}, RT
- self.Emit("MOVQ", jit.Ptr(_SP, 16), _RV) // MOVQ 16(SP), RV
-}
-
-// These are referenced in `generic_amd64.s`
-//goland:noinspection GoUnusedGlobalVariable
-var (
- _type_byte = rt.UnpackType(reflect.TypeOf(byte(0)))
- _type_eface = rt.UnpackType(reflect.TypeOf((*interface{})(nil)).Elem())
- _type_strmap = rt.UnpackType(reflect.TypeOf(map[string]interface{}(nil)))
-)
-
-/** Generic Decoder **/
-
-var (
- _subr_decode_value = new(_ValueDecoder).load()
-)
diff --git a/decoder/generic_amd64.s b/decoder/generic_amd64.s
deleted file mode 100644
index 505a16e..0000000
--- a/decoder/generic_amd64.s
+++ /dev/null
@@ -1,419 +0,0 @@
-//
-// Copyright 2021 ByteDance Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-#include "go_asm.h"
-#include "funcdata.h"
-#include "textflag.h"
-
-// Register Allocations:
-// AX result index (if any), or negative for errors
-// R9 result value (slice array pointer or map pointer)
-// R12 parameter string buffer
-// R13 parameter string length
-// R14 parameter index
-// R15 decoder flags
-
-#define ST BX
-#define RT R8
-#define RV R9
-#define RE R11
-#define PS R12
-#define PN R13
-#define PI R14
-#define FL R15
-
-#define ERR_EOF $-1
-#define ERR_INVALID_CHAR $-2
-
-#define lspace(to) \
- MOVQ PS, DI \
- MOVQ PN, SI \
- MOVQ PI, DX \
- MOVQ github·com∕bytedance∕sonic∕internal∕native·S_lspace(SB), AX \
- CALL AX \
- MOVQ AX, PI \
- TESTQ AX, AX \
- JNS to \
- RET \
-to:
-
-#define match_eof(to) \
- MOVQ ERR_EOF, AX \
- CMPQ PI, PN \
- JBE to \
- MOVQ PN, PI \
- RET \
-to:
-
-#define match_empty(to, ch) \
- CMPB (PS)(PI*1), ch \
- JNE to \
- XORQ AX, AX \
- XORQ RV, RV \
- ADDQ $1, PI \
- RET \
-to:
-
-#define match_delim(done, next, ch) \
- MOVBLZX (PS)(PI*1), AX \
- ADDQ $1, PI \
- CMPL AX, ch \
- JE done \
- CMPL AX, $',' \
- JE next \
- MOVQ ERR_INVALID_CHAR, AX \
- SUBQ $1, PI \
- RET \
-done:
-
-#define check_char(to, ch) \
- MOVBLZX (PS)(PI*1), CX \
- ADDQ $1, PI \
- MOVQ ERR_INVALID_CHAR, AX \
- CMPL CX, ch \
- JE to \
- SUBQ $1, PI \
- RET \
-to:
-
-#define check_empty(to, ch) \
- match_eof(_check_empty) \
- match_empty(to, ch)
-
-#define check_delim(done, next, ch) \
-match_eof(_check_delim) \
-match_delim(done, next, ch) \
-
-// Generic Array Decoder
-
-#define ARR_st fl-80(SP)
-#define ARR_fl fl-72(SP)
-#define ARR_ps ps-64(SP)
-#define ARR_pn ps-56(SP)
-#define ARR_pi pi-48(SP)
-#define ARR_sp sp-40(SP)
-#define ARR_sl sl-32(SP)
-#define ARR_sc sc-24(SP)
-#define ARR_rt sl-16(SP)
-#define ARR_rv sc-8(SP)
-
-TEXT ·decodeArray(SB), NOSPLIT, $144 - 8
- NO_LOCAL_POINTERS
- lspace(_check_array_empty)
- check_empty(_make_slice, $']')
-
- // set slice initial capacity to 16
- XORQ CX, CX
- MOVL $16, DX
- MOVQ CX, ARR_sl
- MOVQ DX, ARR_sc
-
- // allocate memory for slice
- MOVQ ST, ARR_st
- MOVQ FL, ARR_fl
- MOVQ PS, ARR_ps
- MOVQ PN, ARR_pn
- MOVQ PI, ARR_pi
- MOVQ ·_type_eface(SB), AX
- MOVQ AX, (SP)
- MOVQ CX, 8(SP)
- MOVQ DX, 16(SP)
- CALL runtime·makeslice(SB)
- MOVQ 24(SP), AX
- MOVQ AX, ARR_sp
- MOVQ AX, ret+0(FP)
- MOVQ ARR_st, ST
- MOVQ ARR_fl, FL
- MOVQ ARR_ps, PS
- MOVQ ARR_pn, PN
- MOVQ ARR_pi, PI
- GO_RESULTS_INITIALIZED
-
-_parse_loop:
- MOVQ ·_subr_decode_value(SB), AX
- CALL AX
- TESTQ RE, RE
- JNZ _parsing_error
-
- // check for slice space
- MOVQ ARR_sp, DI
- MOVQ ARR_sl, CX
- CMPQ CX, ARR_sc
- JAE _more_space
-
-_append_slice:
- LEAQ (DI)(CX*8), DI
- LEAQ (DI)(CX*8), DI
- MOVQ RT, (DI)
- MOVQ RV, 8(DI)
- ADDQ $1, CX
- MOVQ CX, ARR_sl
-
- // check for the delimiter
- lspace(_check_array_delim)
- check_delim(_done, _parse_loop, $']')
-
- // set the result register and length
- MOVQ ARR_sp, RV
- MOVQ ARR_sl, AX
- RET
-
-_parsing_error:
- MOVQ RE, AX
- NEGQ AX
- RET
-
-_more_space:
- MOVQ ST, ARR_st
- MOVQ FL, ARR_fl
- MOVQ PS, ARR_ps
- MOVQ PN, ARR_pn
- MOVQ PI, ARR_pi
- MOVQ RT, ARR_rt
- MOVQ RV, ARR_rv
- MOVQ ARR_sc, DX
- MOVQ ·_type_eface(SB), AX
- MOVQ AX, (SP)
- MOVQ DI, 8(SP)
- MOVQ CX, 16(SP)
- MOVQ DX, 24(SP)
- SHLQ $1, DX
- MOVQ DX, 32(SP)
- CALL runtime·growslice(SB)
- MOVQ 40(SP), DI
- MOVQ 48(SP), CX
- MOVQ 56(SP), DX
- MOVQ DI, ARR_sp
- MOVQ CX, ARR_sl
- MOVQ DX, ARR_sc
- MOVQ ARR_st, ST
- MOVQ ARR_fl, FL
- MOVQ ARR_ps, PS
- MOVQ ARR_pn, PN
- MOVQ ARR_pi, PI
- MOVQ ARR_rt, RT
- MOVQ ARR_rv, RV
- JMP _append_slice
-
-// Generic Object Decoder
-
-#define OBJ_ss OBJ_ss_Sp
-#define OBJ_ss_Sp ss_Sp-72(SP)
-#define OBJ_ss_Sn ss_Sn-64(SP)
-
-#define OBJ_st ps-56(SP)
-#define OBJ_fl ps-48(SP)
-#define OBJ_ps ps-40(SP)
-#define OBJ_pn ps-32(SP)
-#define OBJ_pi pi-24(SP)
-#define OBJ_vp vp-16(SP)
-#define OBJ_mp mp-8(SP)
-
-TEXT ·decodeObject(SB), NOSPLIT, $104 - 8
- NO_LOCAL_POINTERS
- lspace(_check_object_empty)
- check_empty(_make_map, $'}')
-
- // create the result map
- MOVQ ST, OBJ_st
- MOVQ FL, OBJ_fl
- MOVQ PS, OBJ_ps
- MOVQ PN, OBJ_pn
- MOVQ PI, OBJ_pi
- CALL runtime·makemap_small(SB)
- MOVQ (SP), AX
- MOVQ AX, OBJ_mp
- MOVQ AX, ret+0(FP)
- MOVQ OBJ_st, ST
- MOVQ OBJ_fl, FL
- MOVQ OBJ_ps, PS
- MOVQ OBJ_pn, PN
- MOVQ OBJ_pi, PI
- GO_RESULTS_INITIALIZED
-
-_parse_loop:
- CALL decodeObjectKey(SB)
- MOVQ DI, OBJ_ss_Sp
- MOVQ SI, OBJ_ss_Sn
- TESTQ AX, AX
- JNS _value_delim
- RET
-
-_value_delim:
- lspace(_check_value_delim)
- check_char(_parse_value, $':')
-
- // allocate a new slot in the map
- MOVQ ST, OBJ_st
- MOVQ FL, OBJ_fl
- MOVQ PS, OBJ_ps
- MOVQ PN, OBJ_pn
- MOVQ PI, OBJ_pi
- MOVQ ·_type_strmap(SB), AX
- MOVQ OBJ_mp, CX
- MOVOU OBJ_ss, X0
- MOVQ AX, (SP)
- MOVQ CX, 8(SP)
- MOVOU X0, 16(SP)
- CALL runtime·mapassign_faststr(SB)
- MOVQ 32(SP), AX
- MOVQ AX, OBJ_vp
- MOVQ OBJ_st, ST
- MOVQ OBJ_fl, FL
- MOVQ OBJ_ps, PS
- MOVQ OBJ_pn, PN
- MOVQ OBJ_pi, PI
-
- // decode the value
- MOVQ ·_subr_decode_value(SB), AX
- CALL AX
- TESTQ RE, RE
- JNZ _value_error
-
- // set the map value
- MOVQ OBJ_vp, AX
- MOVQ RT, (AX)
- MOVQ RV, 8(AX)
-
- // check for the delimiter
- lspace(_check_object_delim)
- check_delim(_done, _parse_loop, $'}')
-
- // set the result register and clear the errors
- XORQ AX, AX
- MOVQ OBJ_mp, RV
- RET
-
-_value_error:
- MOVQ RE, AX
- NEGQ AX
- RET
-
-// Object Key Parsing Helper
-
-#define V_STRING $7
-#define F_DISABLE_URC $2
-#define B_UNICODE_REPLACE $1
-
-#define VAR_in VAR_in_PS
-#define VAR_in_ST in_PS-88(SP)
-#define VAR_in_FL in_PS-80(SP)
-#define VAR_in_PS in_PS-72(SP)
-#define VAR_in_PN in_PN-64(SP)
-#define VAR_in_PI in_PI-56(SP)
-
-#define VAR_ss VAR_ss_Sp
-#define VAR_ss_Sp ss_Sp-48(SP)
-#define VAR_ss_Sn ss_Sp-40(SP)
-
-#define VAR_vv VAR_vv_Vt
-#define VAR_vv_Vt vv_Vt-32(SP)
-#define VAR_vv_Dv vv_Dv-24(SP)
-#define VAR_vv_Iv vv_Iv-16(SP)
-#define VAR_vv_Ep vv_Ep-8(SP)
-
-TEXT decodeObjectKey(SB), NOSPLIT, $120 - 0
- NO_LOCAL_POINTERS
- lspace(_parse_key_begin)
- check_char(_parse_key_body, $'"')
-
- // parse the string
- MOVQ PS, VAR_in_PS
- MOVQ PN, VAR_in_PN
- MOVQ PI, VAR_in_PI
- LEAQ VAR_in, DI
- LEAQ VAR_in_PI, SI
- LEAQ VAR_vv, DX
- MOVQ github·com∕bytedance∕sonic∕internal∕native·S_vstring(SB), AX
- CALL AX
- MOVQ VAR_in_PI, PI
-
- // check for errors
- MOVQ VAR_vv_Vt, AX
- TESTQ AX, AX
- JNS _check_quote
- RET
-
-_check_quote:
- CMPQ AX, V_STRING
- JNE _invalid_type
-
- // extract the string
- MOVQ VAR_vv_Iv, CX
- MOVQ PS, DI
- MOVQ PI, SI
- ADDQ CX, DI
- SUBQ CX, SI
- SUBQ $1, SI
-
- // check for quotes
- CMPQ VAR_vv_Ep, $-1
- JNE _unquote
- MOVQ SI, AX
- RET
-
-_unquote:
- XORQ AX, AX
- MOVQ ST, VAR_in_ST
- MOVQ FL, VAR_in_FL
- MOVQ PS, VAR_in_PS
- MOVQ PN, VAR_in_PN
- MOVQ PI, VAR_in_PI
- MOVQ ·_type_byte(SB), CX
- MOVQ DI, VAR_ss_Sp
- MOVQ SI, VAR_ss_Sn
-
- // allocate space for unquoted string
- MOVQ SI, (SP)
- MOVQ CX, 8(SP)
- MOVQ AX, 16(SP)
- CALL runtime·mallocgc(SB)
- MOVQ 24(SP), DX
- MOVQ VAR_in_ST, ST
- MOVQ VAR_in_FL, FL
- MOVQ VAR_in_PS, PS
- MOVQ VAR_in_PN, PN
- MOVQ VAR_in_PI, PI
-
- // unquote the string
- MOVQ VAR_ss_Sp, DI
- MOVQ VAR_ss_Sn, SI
- MOVQ DX, VAR_ss_Sp
- LEAQ VAR_vv_Ep, CX
- XORQ R8, R8
- BTQ F_DISABLE_URC, FL
- SETCC R8
- SHLQ B_UNICODE_REPLACE, R8
- MOVQ github·com∕bytedance∕sonic∕internal∕native·S_unquote(SB), AX
- CALL AX
- TESTQ AX, AX
- JS _escape_error
- MOVQ AX, SI
- MOVQ VAR_ss_Sp, DI
- RET
-
-_escape_error:
- MOVQ VAR_ss_Sn, CX
- SUBQ VAR_vv_Ep, CX
- SUBQ CX, PI
- SUBQ $1, PI
- RET
-
-_invalid_type:
- MOVQ AX, (SP)
- CALL ·throw_invalid_type(SB)
- BYTE $0xcc
- WORD $0xfdeb
diff --git a/decoder/generic_test.go b/decoder/generic_test.go
index e64c1d7..ee021fc 100644
--- a/decoder/generic_test.go
+++ b/decoder/generic_test.go
@@ -20,29 +20,16 @@ import (
`fmt`
`reflect`
`testing`
- `unsafe`
`github.com/bytedance/sonic/ast`
- `github.com/bytedance/sonic/internal/native/types`
- `github.com/bytedance/sonic/internal/rt`
`github.com/davecgh/go-spew/spew`
`github.com/stretchr/testify/require`
)
-//go:nosplit
-//go:noescape
-//goland:noinspection GoUnusedParameter
-func decodeInterface(s string, f uint64) (int, interface{}, types.ParsingError)
-
-//go:nosplit
-//go:noescape
-//goland:noinspection GoUnusedParameter
-func decodeObjectKeyString(s string, i int) string
-
func TestGeneric_DecodeInterface(t *testing.T) {
- s := `[null, true, false, 1234, -1.25e-8, "hello\nworld", [], {"asdf": [1, 2.5, "qwer", null, true, false, [], {"zxcv": "fghj"}]}]`
- i, v, err := decodeInterface(s, 0)
- if err < 0 {
+ s := `[null, true, false, 1234, -1.25e-8, "hello\nworld", [], {"asdf": [1, 2.5, "qwer", null, true, false, [], {"zxcv": "fghj"}], "qwer": 7777}]`
+ i, v, err := decodeGeneric(s, 0, 0)
+ if err != 0 {
require.NoError(t, err)
}
require.Equal(t, len(s), i)
@@ -51,14 +38,6 @@ func TestGeneric_DecodeInterface(t *testing.T) {
fmt.Printf("type: %s\n", reflect.TypeOf(v))
}
-func TestGeneric_DecodeObjectKeyString(t *testing.T) {
- r := decodeObjectKeyString(` "hello\u2333world"`, 4)
- if v := (*rt.GoString)(unsafe.Pointer(&r)).Len; v < 0 {
- require.NoError(t, types.ParsingError(-v))
- }
- spew.Dump(r)
-}
-
func BenchmarkGeneric_DecodeAST(b *testing.B) {
_, _, _ = ast.Loads(TwitterJson)
b.SetBytes(int64(len(TwitterJson)))
@@ -68,12 +47,12 @@ func BenchmarkGeneric_DecodeAST(b *testing.B) {
}
}
-func BenchmarkGeneric_DecodeInterface(b *testing.B) {
- _, _, _ = decodeInterface(TwitterJson, 0)
+func BenchmarkGeneric_DecodeGeneric(b *testing.B) {
+ _, _, _ = decodeGeneric(TwitterJson, 0, 0)
b.SetBytes(int64(len(TwitterJson)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
- _, _, _ = decodeInterface(TwitterJson, 0)
+ _, _, _ = decodeGeneric(TwitterJson, 0, 0)
}
}
@@ -88,13 +67,13 @@ func BenchmarkGeneric_Parallel_DecodeAST(b *testing.B) {
})
}
-func BenchmarkGeneric_Parallel_DecodeInterface(b *testing.B) {
- _, _, _ = decodeInterface(TwitterJson, 0)
+func BenchmarkGeneric_Parallel_DecodeGeneric(b *testing.B) {
+ _, _, _ = decodeGeneric(TwitterJson, 0, 0)
b.SetBytes(int64(len(TwitterJson)))
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
- _, _, _ = decodeInterface(TwitterJson, 0)
+ _, _, _ = decodeGeneric(TwitterJson, 0, 0)
}
})
}
diff --git a/decoder/generic_test.s b/decoder/generic_test.s
deleted file mode 100644
index bc9a8b4..0000000
--- a/decoder/generic_test.s
+++ /dev/null
@@ -1,50 +0,0 @@
-//
-// Copyright 2021 ByteDance Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-
-#include "go_asm.h"
-#include "funcdata.h"
-#include "textflag.h"
-
-TEXT ·decodeInterface(SB), NOSPLIT, $0 - 56
- NO_LOCAL_POINTERS
- MOVQ s+0(FP), R12
- MOVQ n+8(FP), R13
- MOVQ n+16(FP), R15
- XORQ R14, R14
- MOVQ ·_subr_decode_value(SB), AX
- CALL AX
- XORQ AX, AX
- TESTQ R11, R11
- CMOVQNE AX, R8
- CMOVQNE AX, R9
- MOVQ R14, i+24(FP)
- MOVQ R8, t+32(FP)
- MOVQ R9, v+40(FP)
- MOVQ R11, e+48(FP)
- RET
-
-TEXT ·decodeObjectKeyString(SB), NOSPLIT, $0 - 40
- NO_LOCAL_POINTERS
- MOVQ s+0(FP), R12
- MOVQ n+8(FP), R13
- MOVQ i+16(FP), R14
- CALL decodeObjectKey(SB)
- XORQ CX, CX
- TESTQ AX, AX
- CMOVQMI CX, DI
- MOVQ DI, rp+24(FP)
- MOVQ AX, rl+32(FP)
- RET
diff --git a/decoder/stubs.go b/decoder/stubs.go
index 4160f24..5358c0e 100644
--- a/decoder/stubs.go
+++ b/decoder/stubs.go
@@ -27,30 +27,12 @@ import (
//go:linkname _subr__b64decode github.com/chenzhuoyu/base64x._subr__b64decode
var _subr__b64decode uintptr
-//go:nosplit
-//go:noescape
-//go:linkname throw runtime.throw
-//goland:noinspection GoUnusedParameter
-func throw(s string)
-
//go:nosplit
//go:noescape
//go:linkname convT64 runtime.convT64
//goland:noinspection GoUnusedParameter
func convT64(v uint64) unsafe.Pointer
-//go:nosplit
-//go:noescape
-//go:linkname convTslice runtime.convTslice
-//goland:noinspection GoUnusedParameter
-func convTslice(v []byte) unsafe.Pointer
-
-//go:nosplit
-//go:noescape
-//go:linkname convTstring runtime.convTstring
-//goland:noinspection GoUnusedParameter
-func convTstring(v string) unsafe.Pointer
-
//go:nosplit
//go:noescape
//go:linkname memequal runtime.memequal
diff --git a/encoder/assembler_amd64.go b/encoder/assembler_amd64.go
index a826d41..50e6035 100644
--- a/encoder/assembler_amd64.go
+++ b/encoder/assembler_amd64.go
@@ -69,7 +69,7 @@ const (
const (
_FP_args = 40 // 40 bytes for passing arguments to this function
_FP_fargs = 64 // 64 bytes for passing arguments to other Go functions
- _FP_saves = 64 // 72 bytes for saving the registers before CALL instructions
+ _FP_saves = 64 // 64 bytes for saving the registers before CALL instructions
)
const (
diff --git a/internal/jit/runtime.go b/internal/jit/runtime.go
index e559e65..ec69d06 100644
--- a/internal/jit/runtime.go
+++ b/internal/jit/runtime.go
@@ -30,7 +30,11 @@ import (
func getitab(inter *rt.GoType, typ *rt.GoType, canfail bool) *rt.GoItab
func Func(f interface{}) obj.Addr {
- return Imm(*(*int64)(rt.UnpackEface(f).Value))
+ if p := rt.UnpackEface(f); p.Type.Kind() != reflect.Func {
+ panic("f is not a function")
+ } else {
+ return Imm(*(*int64)(p.Value))
+ }
}
func Type(t reflect.Type) obj.Addr {
diff --git a/internal/native/avx/native_amd64.go b/internal/native/avx/native_amd64.go
index b8c4d35..1624c59 100644
--- a/internal/native/avx/native_amd64.go
+++ b/internal/native/avx/native_amd64.go
@@ -57,7 +57,7 @@ func __lspace(sp unsafe.Pointer, nb int, off int) (ret int)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
-func __value(s unsafe.Pointer, n int, p int, v *types.JsonState) (ret int)
+func __value(s unsafe.Pointer, n int, p int, v *types.JsonState, allow_control int) (ret int)
//go:nosplit
//go:noescape
diff --git a/internal/native/avx/native_amd64.s b/internal/native/avx/native_amd64.s
index 6706b85..e01c75e 100644
--- a/internal/native/avx/native_amd64.s
+++ b/internal/native/avx/native_amd64.s
@@ -953,9 +953,9 @@ LBB5_5:
INCL DX
MOVL $348, CX
MOVQ CX, -64(BP)
- LONG $0x940d8d48; WORD $0x0034; BYTE $0x00 // leaq $13460(%rip), %rcx /* _TabPowE(%rip) */
+ LONG $0x150d8d48; WORD $0x0035; BYTE $0x00 // leaq $13589(%rip), %rcx /* _TabPowE(%rip) */
MOVBLSX 0(CX)(DX*2), SI
- LONG $0x370d8d48; WORD $0x0035; BYTE $0x00 // leaq $13623(%rip), %rcx /* _TabPowF(%rip) */
+ LONG $0xb80d8d48; WORD $0x0035; BYTE $0x00 // leaq $13752(%rip), %rcx /* _TabPowF(%rip) */
MOVQ 0(CX)(DX*8), R8
BSRQ AX, CX
XORL $63, CX
@@ -1189,7 +1189,7 @@ LBB5_36:
MOVL SI, CX
NEGL CX
MOVLQSX CX, CX
- LONG $0xdd158d48; WORD $0x0034; BYTE $0x00 // leaq $13533(%rip), %rdx /* _TabPow10(%rip) */
+ LONG $0x5e158d48; WORD $0x0035; BYTE $0x00 // leaq $13662(%rip), %rdx /* _TabPow10(%rip) */
MOVQ -80(BP), DI
IMULQ 0(DX)(CX*8), DI
CMPQ R12, DI
@@ -1224,7 +1224,7 @@ LBB5_41:
LBB5_43:
MOVL SI, CX
- LONG $0x73158d48; WORD $0x0034; BYTE $0x00 // leaq $13427(%rip), %rdx /* _TabPow10(%rip) */
+ LONG $0xf4158d48; WORD $0x0034; BYTE $0x00 // leaq $13556(%rip), %rdx /* _TabPow10(%rip) */
MOVQ 0(DX)(CX*8), DI
MOVL R10, CX
SHLQ CX, DI
@@ -1606,7 +1606,7 @@ LBB5_105:
JG LBB5_107
ADDL $4, AX
MOVL CX, CX
- LONG $0xe2358d48; WORD $0x002f; BYTE $0x00 // leaq $12258(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x63358d48; WORD $0x0030; BYTE $0x00 // leaq $12387(%rip), %rsi /* _Digits(%rip) */
MOVB 0(SI)(CX*2), DX
ADDQ CX, CX
MOVB DX, 0(R14)
@@ -1624,7 +1624,7 @@ LBB5_107:
MOVB SI, 0(R14)
WORD $0xd26b; BYTE $0x64 // imull $100, %edx, %edx
SUBL DX, CX
- LONG $0xa8358d48; WORD $0x002f; BYTE $0x00 // leaq $12200(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x29358d48; WORD $0x0030; BYTE $0x00 // leaq $12329(%rip), %rsi /* _Digits(%rip) */
MOVB 0(SI)(CX*2), DX
MOVB 1(SI)(CX*2), CX
MOVB DX, 1(R14)
@@ -1655,7 +1655,7 @@ LBB5_111:
JG LBB5_124
ADDL $2, AX
MOVL DI, DX
- LONG $0x51358d48; WORD $0x002f; BYTE $0x00 // leaq $12113(%rip), %rsi /* _Digits(%rip) */
+ LONG $0xd2358d48; WORD $0x002f; BYTE $0x00 // leaq $12242(%rip), %rsi /* _Digits(%rip) */
MOVB 0(SI)(DX*2), DI
ADDQ DX, DX
MOVB DI, 0(CX)
@@ -1733,7 +1733,7 @@ LBB5_124:
MOVB SI, 0(CX)
WORD $0xd26b; BYTE $0x64 // imull $100, %edx, %edx
SUBL DX, DI
- LONG $0x0c158d48; WORD $0x002e; BYTE $0x00 // leaq $11788(%rip), %rdx /* _Digits(%rip) */
+ LONG $0x8d158d48; WORD $0x002e; BYTE $0x00 // leaq $11917(%rip), %rdx /* _Digits(%rip) */
MOVB 0(DX)(DI*2), SI
MOVB 1(DX)(DI*2), DX
MOVB SI, 1(CX)
@@ -1844,7 +1844,7 @@ _u64toa:
ADDQ AX, AX
CMPL SI, $1000
JB LBB7_3
- LONG $0xd00d8d48; WORD $0x002c; BYTE $0x00 // leaq $11472(%rip), %rcx /* _Digits(%rip) */
+ LONG $0x510d8d48; WORD $0x002d; BYTE $0x00 // leaq $11601(%rip), %rcx /* _Digits(%rip) */
MOVB 0(DX)(CX*1), CX
MOVB CX, 0(DI)
MOVL $1, CX
@@ -1858,14 +1858,14 @@ LBB7_3:
LBB7_4:
MOVWLZX DX, DX
ORQ $1, DX
- LONG $0xaf358d48; WORD $0x002c; BYTE $0x00 // leaq $11439(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x30358d48; WORD $0x002d; BYTE $0x00 // leaq $11568(%rip), %rsi /* _Digits(%rip) */
MOVB 0(DX)(SI*1), DX
MOVL CX, SI
INCL CX
MOVB DX, 0(DI)(SI*1)
LBB7_6:
- LONG $0x9e158d48; WORD $0x002c; BYTE $0x00 // leaq $11422(%rip), %rdx /* _Digits(%rip) */
+ LONG $0x1f158d48; WORD $0x002d; BYTE $0x00 // leaq $11551(%rip), %rdx /* _Digits(%rip) */
MOVB 0(AX)(DX*1), DX
MOVL CX, SI
INCL CX
@@ -1874,7 +1874,7 @@ LBB7_6:
LBB7_7:
MOVWLZX AX, AX
ORQ $1, AX
- LONG $0x86158d48; WORD $0x002c; BYTE $0x00 // leaq $11398(%rip), %rdx /* _Digits(%rip) */
+ LONG $0x07158d48; WORD $0x002d; BYTE $0x00 // leaq $11527(%rip), %rdx /* _Digits(%rip) */
MOVB 0(AX)(DX*1), AX
MOVL CX, DX
INCL CX
@@ -1921,7 +1921,7 @@ LBB7_8:
ADDQ R11, R11
CMPL SI, $10000000
JB LBB7_11
- LONG $0xef058d48; WORD $0x002b; BYTE $0x00 // leaq $11247(%rip), %rax /* _Digits(%rip) */
+ LONG $0x70058d48; WORD $0x002c; BYTE $0x00 // leaq $11376(%rip), %rax /* _Digits(%rip) */
MOVB 0(R10)(AX*1), AX
MOVB AX, 0(DI)
MOVL $1, CX
@@ -1935,14 +1935,14 @@ LBB7_11:
LBB7_12:
MOVL R10, AX
ORQ $1, AX
- LONG $0xca358d48; WORD $0x002b; BYTE $0x00 // leaq $11210(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x4b358d48; WORD $0x002c; BYTE $0x00 // leaq $11339(%rip), %rsi /* _Digits(%rip) */
MOVB 0(AX)(SI*1), AX
MOVL CX, SI
INCL CX
MOVB AX, 0(DI)(SI*1)
LBB7_14:
- LONG $0xb9058d48; WORD $0x002b; BYTE $0x00 // leaq $11193(%rip), %rax /* _Digits(%rip) */
+ LONG $0x3a058d48; WORD $0x002c; BYTE $0x00 // leaq $11322(%rip), %rax /* _Digits(%rip) */
MOVB 0(R9)(AX*1), AX
MOVL CX, SI
INCL CX
@@ -1951,7 +1951,7 @@ LBB7_14:
LBB7_15:
MOVWLZX R9, AX
ORQ $1, AX
- LONG $0x9f358d48; WORD $0x002b; BYTE $0x00 // leaq $11167(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x20358d48; WORD $0x002c; BYTE $0x00 // leaq $11296(%rip), %rsi /* _Digits(%rip) */
MOVB 0(AX)(SI*1), AX
MOVL CX, DX
MOVB AX, 0(DI)(DX*1)
@@ -2033,7 +2033,7 @@ LBB7_16:
MOVL $16, CX
SUBL AX, CX
SHLQ $4, AX
- LONG $0x14158d48; WORD $0x002b; BYTE $0x00 // leaq $11028(%rip), %rdx /* _VecShiftShuffles(%rip) */
+ LONG $0x95158d48; WORD $0x002b; BYTE $0x00 // leaq $11157(%rip), %rdx /* _VecShiftShuffles(%rip) */
LONG $0x0071e2c4; WORD $0x1004 // vpshufb (%rax,%rdx), %xmm1, %xmm0
LONG $0x077ffac5 // vmovdqu %xmm0, (%rdi)
MOVL CX, AX
@@ -2059,7 +2059,7 @@ LBB7_20:
CMPL DX, $99
JA LBB7_22
MOVL DX, AX
- LONG $0xf70d8d48; WORD $0x0029; BYTE $0x00 // leaq $10743(%rip), %rcx /* _Digits(%rip) */
+ LONG $0x780d8d48; WORD $0x002a; BYTE $0x00 // leaq $10872(%rip), %rcx /* _Digits(%rip) */
MOVB 0(CX)(AX*2), DX
MOVB 1(CX)(AX*2), AX
MOVB DX, 0(DI)
@@ -2084,7 +2084,7 @@ LBB7_22:
WORD $0xc96b; BYTE $0x64 // imull $100, %ecx, %ecx
SUBL CX, AX
MOVWLZX AX, AX
- LONG $0xa60d8d48; WORD $0x0029; BYTE $0x00 // leaq $10662(%rip), %rcx /* _Digits(%rip) */
+ LONG $0x270d8d48; WORD $0x002a; BYTE $0x00 // leaq $10791(%rip), %rcx /* _Digits(%rip) */
MOVB 0(CX)(AX*2), DX
MOVB 1(CX)(AX*2), AX
MOVB DX, 1(DI)
@@ -2096,7 +2096,7 @@ LBB7_24:
WORD $0xc86b; BYTE $0x64 // imull $100, %eax, %ecx
SUBL CX, DX
MOVWLZX AX, AX
- LONG $0x83058d4c; WORD $0x0029; BYTE $0x00 // leaq $10627(%rip), %r8 /* _Digits(%rip) */
+ LONG $0x04058d4c; WORD $0x002a; BYTE $0x00 // leaq $10756(%rip), %r8 /* _Digits(%rip) */
MOVB 0(R8)(AX*2), CX
MOVB 1(R8)(AX*2), AX
MOVB CX, 0(DI)
@@ -2180,7 +2180,7 @@ _unquote:
MOVQ R8, -56(BP)
MOVL R8, R10
ANDL $1, R10
- LONG $0x91058d4c; WORD $0x0029; BYTE $0x00 // leaq $10641(%rip), %r8 /* __UnquoteTab(%rip) */
+ LONG $0x12058d4c; WORD $0x002a; BYTE $0x00 // leaq $10770(%rip), %r8 /* __UnquoteTab(%rip) */
QUAD $0xffffffb5056ffac5 // vmovdqu $-75(%rip), %xmm0 /* LCPI8_0(%rip) */
MOVQ DI, R9
MOVQ SI, R14
@@ -2693,91 +2693,99 @@ _value:
WORD $0x8948; BYTE $0xe5 // movq %rsp, %rbp
WORD $0x5741 // pushq %r15
WORD $0x5641 // pushq %r14
+ WORD $0x5441 // pushq %r12
BYTE $0x53 // pushq %rbx
- SUBQ $24, SP
+ SUBQ $32, SP
+ MOVL R8, R12
MOVQ CX, R14
MOVQ SI, BX
MOVQ DI, R15
- MOVQ DI, -48(BP)
- MOVQ SI, -40(BP)
- LONG $0xffe27ae8; BYTE $0xff // callq _lspace
- MOVQ AX, -32(BP)
+ MOVQ DI, -56(BP)
+ MOVQ SI, -48(BP)
+ LONG $0xffe275e8; BYTE $0xff // callq _lspace
+ MOVQ AX, -40(BP)
CMPQ AX, BX
JAE LBB9_4
LEAQ 1(AX), CX
- MOVQ CX, -32(BP)
+ MOVQ CX, -40(BP)
MOVBLSX 0(R15)(AX*1), DX
- CMPL DX, $123
- JA LBB9_6
- LONG $0xa7358d48; WORD $0x0001; BYTE $0x00 // leaq $423(%rip), %rsi /* LJTI9_0(%rip) */
+ CMPL DX, $125
+ JA LBB9_8
+ LONG $0x1b358d48; WORD $0x0002; BYTE $0x00 // leaq $539(%rip), %rsi /* LJTI9_0(%rip) */
MOVLQSX 0(SI)(DX*4), DX
ADDQ SI, DX
JMP DX
LBB9_3:
- MOVQ AX, -32(BP)
- LEAQ -48(BP), DI
- LEAQ -32(BP), SI
+ MOVQ AX, -40(BP)
+ LEAQ -56(BP), DI
+ LEAQ -40(BP), SI
MOVQ R14, DX
- LONG $0x0008c8e8; BYTE $0x00 // callq _vnumber
- JMP LBB9_5
+ LONG $0x000944e8; BYTE $0x00 // callq _vnumber
+ MOVQ -40(BP), AX
+ JMP LBB9_7
LBB9_4:
- MOVQ $1, 0(R14)
+ MOVQ AX, CX
LBB9_5:
- MOVQ -32(BP), AX
- ADDQ $24, SP
- BYTE $0x5b // popq %rbx
- WORD $0x5e41 // popq %r14
- WORD $0x5f41 // popq %r15
- BYTE $0x5d // popq %rbp
- RET
+ MOVQ $1, 0(R14)
LBB9_6:
- MOVQ $-2, 0(R14)
- JMP LBB9_5
+ MOVQ CX, AX
LBB9_7:
- LEAQ -48(BP), DI
- LEAQ -32(BP), SI
- MOVQ R14, DX
- LONG $0x000359e8; BYTE $0x00 // callq _vstring
- JMP LBB9_5
+ ADDQ $32, SP
+ BYTE $0x5b // popq %rbx
+ WORD $0x5c41 // popq %r12
+ WORD $0x5e41 // popq %r14
+ WORD $0x5f41 // popq %r15
+ BYTE $0x5d // popq %rbp
+ RET
LBB9_8:
- LEAQ -4(BX), DX
- CMPQ AX, DX
- JAE LBB9_19
- MOVL 0(R15)(CX*1), DX
- CMPL DX, $1702063201
- JNE LBB9_21
- ADDQ $5, AX
- MOVQ AX, -32(BP)
- MOVL $4, AX
- MOVQ AX, 0(R14)
- JMP LBB9_5
+ MOVQ $-2, 0(R14)
+ JMP LBB9_7
+
+LBB9_9:
+ LEAQ -56(BP), DI
+ LEAQ -40(BP), SI
+ MOVQ R14, DX
+ LONG $0x0003cde8; BYTE $0x00 // callq _vstring
+ MOVQ -40(BP), AX
+ JMP LBB9_7
+
+LBB9_10:
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $11, SI
+ JMP LBB9_22
LBB9_11:
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $10, SI
+ JMP LBB9_22
+
+LBB9_12:
+ MOVQ $5, 0(R14)
+ JMP LBB9_6
+
+LBB9_13:
LEAQ -3(BX), CX
CMPQ AX, CX
JAE LBB9_20
MOVL 0(R15)(AX*1), DX
CMPL DX, $1819047278
- JNE LBB9_26
+ JNE LBB9_28
ADDQ $4, AX
- MOVQ AX, -32(BP)
+ MOVQ AX, -40(BP)
MOVL $2, CX
- MOVQ CX, 0(R14)
- JMP LBB9_5
-
-LBB9_14:
- MOVQ $6, 0(R14)
- JMP LBB9_5
-
-LBB9_15:
- MOVQ $5, 0(R14)
- JMP LBB9_5
+ JMP LBB9_35
LBB9_16:
LEAQ -3(BX), CX
@@ -2787,63 +2795,79 @@ LBB9_16:
CMPL DX, $1702195828
JNE LBB9_31
ADDQ $4, AX
- MOVQ AX, -32(BP)
+ MOVQ AX, -40(BP)
MOVL $3, CX
- MOVQ CX, 0(R14)
- JMP LBB9_5
-
-LBB9_20:
- MOVQ BX, -32(BP)
- MOVQ $-1, CX
- MOVQ CX, 0(R14)
- JMP LBB9_5
+ JMP LBB9_35
LBB9_19:
- MOVQ BX, -32(BP)
- MOVQ $-1, AX
- MOVQ AX, 0(R14)
- JMP LBB9_5
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $13, SI
+ JMP LBB9_22
+
+LBB9_20:
+ MOVQ BX, -40(BP)
+ MOVQ $-1, CX
+ JMP LBB9_36
LBB9_21:
- MOVQ $-2, AX
- CMPB DX, $97
- JNE LBB9_25
- MOVL $1702063201, DX
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $12, SI
+
+LBB9_22:
+ LONG $0xf2440f48 // cmoveq %rdx, %rsi
+ MOVQ SI, 0(R14)
+ SUBQ AX, CX
+ JMP LBB9_6
LBB9_23:
- SHRL $8, DX
- MOVBLSX 1(R15)(CX*1), SI
- INCQ CX
- MOVBLZX DX, DI
- CMPL DI, SI
- JE LBB9_23
- MOVQ CX, -32(BP)
-
-LBB9_25:
- MOVQ AX, 0(R14)
- JMP LBB9_5
+ LEAQ -4(BX), DX
+ CMPQ AX, DX
+ JAE LBB9_27
+ MOVL 0(R15)(CX*1), SI
+ CMPL SI, $1702063201
+ JNE LBB9_37
+ ADDQ $5, AX
+ MOVQ AX, -40(BP)
+ MOVL $4, DX
+ MOVQ AX, BX
+ JMP LBB9_42
LBB9_26:
- MOVQ AX, -32(BP)
- MOVQ $-2, CX
- CMPB DX, $110
- JNE LBB9_30
- MOVL $1819047278, DX
+ MOVQ $6, 0(R14)
+ JMP LBB9_6
+
+LBB9_27:
+ MOVQ BX, -40(BP)
+ MOVQ $-1, DX
+ JMP LBB9_42
LBB9_28:
+ MOVQ AX, -40(BP)
+ MOVQ $-2, CX
+ CMPB DX, $110
+ JNE LBB9_35
+ MOVL $1819047278, DX
+
+LBB9_30:
SHRL $8, DX
MOVBLSX 1(R15)(AX*1), SI
INCQ AX
MOVBLZX DX, DI
CMPL DI, SI
- JE LBB9_28
- JMP LBB9_29
+ JE LBB9_30
+ JMP LBB9_34
LBB9_31:
- MOVQ AX, -32(BP)
+ MOVQ AX, -40(BP)
MOVQ $-2, CX
CMPB DX, $116
- JNE LBB9_30
+ JNE LBB9_35
MOVL $1702195828, DX
LBB9_33:
@@ -2854,147 +2878,180 @@ LBB9_33:
CMPL DI, SI
JE LBB9_33
-LBB9_29:
- MOVQ AX, -32(BP)
+LBB9_34:
+ MOVQ AX, -40(BP)
-LBB9_30:
+LBB9_35:
+ MOVQ AX, BX
+
+LBB9_36:
MOVQ CX, 0(R14)
- JMP LBB9_5
+ MOVQ BX, AX
+ JMP LBB9_7
-// .set L9_0_set_4, LBB9_4-LJTI9_0
-// .set L9_0_set_6, LBB9_6-LJTI9_0
-// .set L9_0_set_7, LBB9_7-LJTI9_0
-// .set L9_0_set_3, LBB9_3-LJTI9_0
-// .set L9_0_set_15, LBB9_15-LJTI9_0
+LBB9_37:
+ MOVQ $-2, DX
+ CMPB SI, $97
+ JNE LBB9_41
+ MOVL $1702063201, AX
+
+LBB9_39:
+ SHRL $8, AX
+ MOVBLSX 1(R15)(CX*1), SI
+ INCQ CX
+ MOVBLZX AX, DI
+ CMPL DI, SI
+ JE LBB9_39
+ MOVQ CX, -40(BP)
+
+LBB9_41:
+ MOVQ CX, BX
+
+LBB9_42:
+ MOVQ DX, 0(R14)
+ MOVQ BX, AX
+ JMP LBB9_7
+
+// .set L9_0_set_5, LBB9_5-LJTI9_0
// .set L9_0_set_8, LBB9_8-LJTI9_0
+// .set L9_0_set_9, LBB9_9-LJTI9_0
+// .set L9_0_set_10, LBB9_10-LJTI9_0
+// .set L9_0_set_3, LBB9_3-LJTI9_0
// .set L9_0_set_11, LBB9_11-LJTI9_0
+// .set L9_0_set_12, LBB9_12-LJTI9_0
+// .set L9_0_set_21, LBB9_21-LJTI9_0
+// .set L9_0_set_23, LBB9_23-LJTI9_0
+// .set L9_0_set_13, LBB9_13-LJTI9_0
// .set L9_0_set_16, LBB9_16-LJTI9_0
-// .set L9_0_set_14, LBB9_14-LJTI9_0
+// .set L9_0_set_26, LBB9_26-LJTI9_0
+// .set L9_0_set_19, LBB9_19-LJTI9_0
LJTI9_0:
- LONG $0xfffffe78 // .long L9_0_set_4
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe97 // .long L9_0_set_7
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xffffff12 // .long L9_0_set_15
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffea9 // .long L9_0_set_8
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffed8 // .long L9_0_set_11
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xffffff1e // .long L9_0_set_16
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xffffff06 // .long L9_0_set_14
+ LONG $0xfffffe0b // .long L9_0_set_5
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe2b // .long L9_0_set_9
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe41 // .long L9_0_set_10
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffe5a // .long L9_0_set_11
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe73 // .long L9_0_set_12
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffef8 // .long L9_0_set_21
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xffffff1b // .long L9_0_set_23
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe7c // .long L9_0_set_13
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffea7 // .long L9_0_set_16
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xffffff49 // .long L9_0_set_26
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffed2 // .long L9_0_set_19
LCPI10_0:
QUAD $0x2222222222222222; QUAD $0x2222222222222222 // .space 16, '""""""""""""""""'
@@ -3015,7 +3072,7 @@ _vstring:
MOVQ R15, SI
MOVL $34, DX
MOVL $92, CX
- LONG $0xffe27de8; BYTE $0xff // callq _strchr2
+ LONG $0xffe1fce8; BYTE $0xff // callq _strchr2
TESTQ AX, AX
JS LBB10_1
MOVQ 0(BX), R11
@@ -4059,7 +4116,7 @@ LBB15_7:
MOVQ 8(BX), SI
MOVQ 0(R13), DX
MOVQ R14, DI
- LONG $0xffd2e4e8; BYTE $0xff // callq _lspace
+ LONG $0xffd263e8; BYTE $0xff // callq _lspace
MOVQ AX, CX
MOVQ AX, 0(R13)
CMPQ AX, 8(BX)
@@ -4560,7 +4617,7 @@ _skip_string:
MOVQ R15, SI
MOVL $34, DX
MOVL $92, CX
- LONG $0xffd09ce8; BYTE $0xff // callq _strchr2
+ LONG $0xffd01be8; BYTE $0xff // callq _strchr2
TESTQ AX, AX
JS LBB18_3
MOVQ AX, CX
@@ -6171,7 +6228,7 @@ TEXT ·__skip_array(SB), NOSPLIT, $0 - 32
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ m+16(FP), DX
- CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+13958(SB) // _skip_array
+ CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+14087(SB) // _skip_array
MOVQ AX, ret+24(FP)
RET
@@ -6179,7 +6236,7 @@ TEXT ·__skip_object(SB), NOSPLIT, $0 - 32
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ m+16(FP), DX
- CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+13993(SB) // _skip_object
+ CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+14122(SB) // _skip_object
MOVQ AX, ret+24(FP)
RET
@@ -6187,7 +6244,7 @@ TEXT ·__skip_one(SB), NOSPLIT, $0 - 32
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ m+16(FP), DX
- CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12328(SB) // _skip_one
+ CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12457(SB) // _skip_one
MOVQ AX, ret+24(FP)
RET
@@ -6208,39 +6265,40 @@ TEXT ·__unquote(SB), NOSPLIT, $0 - 48
MOVQ AX, ret+40(FP)
RET
-TEXT ·__value(SB), NOSPLIT, $0 - 40
+TEXT ·__value(SB), NOSPLIT, $0 - 48
MOVQ s+0(FP), DI
MOVQ n+8(FP), SI
MOVQ p+16(FP), DX
MOVQ v+24(FP), CX
+ MOVQ allow_control+32(FP), R8
CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+8460(SB) // _value
- MOVQ AX, ret+32(FP)
+ MOVQ AX, ret+40(FP)
RET
TEXT ·__vnumber(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+10806(SB), AX // _vnumber
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+10935(SB), AX // _vnumber
JMP AX
TEXT ·__vsigned(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+11778(SB), AX // _vsigned
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+11907(SB), AX // _vsigned
JMP AX
TEXT ·__vstring(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+9464(SB), AX // _vstring
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+9593(SB), AX // _vstring
JMP AX
TEXT ·__vunsigned(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12055(SB), AX // _vunsigned
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12184(SB), AX // _vunsigned
JMP AX
diff --git a/internal/native/avx/native_amd64_test.go b/internal/native/avx/native_amd64_test.go
index 8e29a70..79aaa7b 100644
--- a/internal/native/avx/native_amd64_test.go
+++ b/internal/native/avx/native_amd64_test.go
@@ -36,7 +36,7 @@ func TestNative_Value(t *testing.T) {
var v types.JsonState
s := ` -12345`
p := (*rt.GoString)(unsafe.Pointer(&s))
- x := __value(p.Ptr, p.Len, 0, &v)
+ x := __value(p.Ptr, p.Len, 0, &v, 0)
assert.Equal(t, 9, x)
assert.Equal(t, types.V_INTEGER, v.Vt)
assert.Equal(t, int64(-12345), v.Iv)
diff --git a/internal/native/avx/native_export_amd64.go b/internal/native/avx/native_export_amd64.go
index 325e974..8399261 100644
--- a/internal/native/avx/native_export_amd64.go
+++ b/internal/native/avx/native_export_amd64.go
@@ -31,7 +31,6 @@ var (
)
var (
- S_value = _subr__value
S_vstring = _subr__vstring
S_vnumber = _subr__vnumber
S_vsigned = _subr__vsigned
diff --git a/internal/native/avx/native_subr_amd64.go b/internal/native/avx/native_subr_amd64.go
index ba6b9dc..8ae10aa 100644
--- a/internal/native/avx/native_subr_amd64.go
+++ b/internal/native/avx/native_subr_amd64.go
@@ -19,16 +19,16 @@ var (
_subr__lquote = **(**uintptr)(unsafe.Pointer(&_func__base)) + 295
_subr__lspace = **(**uintptr)(unsafe.Pointer(&_func__base)) + 937
_subr__lzero = **(**uintptr)(unsafe.Pointer(&_func__base)) + 0
- _subr__skip_array = **(**uintptr)(unsafe.Pointer(&_func__base)) + 13958
- _subr__skip_object = **(**uintptr)(unsafe.Pointer(&_func__base)) + 13993
- _subr__skip_one = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12328
+ _subr__skip_array = **(**uintptr)(unsafe.Pointer(&_func__base)) + 14087
+ _subr__skip_object = **(**uintptr)(unsafe.Pointer(&_func__base)) + 14122
+ _subr__skip_one = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12457
_subr__u64toa = **(**uintptr)(unsafe.Pointer(&_func__base)) + 5637
_subr__unquote = **(**uintptr)(unsafe.Pointer(&_func__base)) + 6825
_subr__value = **(**uintptr)(unsafe.Pointer(&_func__base)) + 8460
- _subr__vnumber = **(**uintptr)(unsafe.Pointer(&_func__base)) + 10806
- _subr__vsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 11778
- _subr__vstring = **(**uintptr)(unsafe.Pointer(&_func__base)) + 9464
- _subr__vunsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12055
+ _subr__vnumber = **(**uintptr)(unsafe.Pointer(&_func__base)) + 10935
+ _subr__vsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 11907
+ _subr__vstring = **(**uintptr)(unsafe.Pointer(&_func__base)) + 9593
+ _subr__vunsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12184
)
var (
diff --git a/internal/native/avx2/native_amd64.go b/internal/native/avx2/native_amd64.go
index 098ee55..a943730 100644
--- a/internal/native/avx2/native_amd64.go
+++ b/internal/native/avx2/native_amd64.go
@@ -57,7 +57,7 @@ func __lspace(sp unsafe.Pointer, nb int, off int) (ret int)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
-func __value(s unsafe.Pointer, n int, p int, v *types.JsonState) (ret int)
+func __value(s unsafe.Pointer, n int, p int, v *types.JsonState, allow_control int) (ret int)
//go:nosplit
//go:noescape
diff --git a/internal/native/avx2/native_amd64.s b/internal/native/avx2/native_amd64.s
index d8bcfaa..ae625d8 100644
--- a/internal/native/avx2/native_amd64.s
+++ b/internal/native/avx2/native_amd64.s
@@ -1084,9 +1084,9 @@ LBB5_5:
INCL DX
MOVL $348, CX
MOVQ CX, -64(BP)
- LONG $0xbc0d8d48; WORD $0x0034; BYTE $0x00 // leaq $13500(%rip), %rcx /* _TabPowE(%rip) */
+ LONG $0x3d0d8d48; WORD $0x0035; BYTE $0x00 // leaq $13629(%rip), %rcx /* _TabPowE(%rip) */
MOVBLSX 0(CX)(DX*2), SI
- LONG $0x5f0d8d48; WORD $0x0035; BYTE $0x00 // leaq $13663(%rip), %rcx /* _TabPowF(%rip) */
+ LONG $0xe00d8d48; WORD $0x0035; BYTE $0x00 // leaq $13792(%rip), %rcx /* _TabPowF(%rip) */
MOVQ 0(CX)(DX*8), R8
BSRQ AX, CX
XORL $63, CX
@@ -1320,7 +1320,7 @@ LBB5_36:
MOVL SI, CX
NEGL CX
MOVLQSX CX, CX
- LONG $0x05158d48; WORD $0x0035; BYTE $0x00 // leaq $13573(%rip), %rdx /* _TabPow10(%rip) */
+ LONG $0x86158d48; WORD $0x0035; BYTE $0x00 // leaq $13702(%rip), %rdx /* _TabPow10(%rip) */
MOVQ -80(BP), DI
IMULQ 0(DX)(CX*8), DI
CMPQ R12, DI
@@ -1355,7 +1355,7 @@ LBB5_41:
LBB5_43:
MOVL SI, CX
- LONG $0x9b158d48; WORD $0x0034; BYTE $0x00 // leaq $13467(%rip), %rdx /* _TabPow10(%rip) */
+ LONG $0x1c158d48; WORD $0x0035; BYTE $0x00 // leaq $13596(%rip), %rdx /* _TabPow10(%rip) */
MOVQ 0(DX)(CX*8), DI
MOVL R10, CX
SHLQ CX, DI
@@ -1737,7 +1737,7 @@ LBB5_105:
JG LBB5_107
ADDL $4, AX
MOVL CX, CX
- LONG $0x0a358d48; WORD $0x0030; BYTE $0x00 // leaq $12298(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x8b358d48; WORD $0x0030; BYTE $0x00 // leaq $12427(%rip), %rsi /* _Digits(%rip) */
MOVB 0(SI)(CX*2), DX
ADDQ CX, CX
MOVB DX, 0(R14)
@@ -1755,7 +1755,7 @@ LBB5_107:
MOVB SI, 0(R14)
WORD $0xd26b; BYTE $0x64 // imull $100, %edx, %edx
SUBL DX, CX
- LONG $0xd0358d48; WORD $0x002f; BYTE $0x00 // leaq $12240(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x51358d48; WORD $0x0030; BYTE $0x00 // leaq $12369(%rip), %rsi /* _Digits(%rip) */
MOVB 0(SI)(CX*2), DX
MOVB 1(SI)(CX*2), CX
MOVB DX, 1(R14)
@@ -1786,7 +1786,7 @@ LBB5_111:
JG LBB5_124
ADDL $2, AX
MOVL DI, DX
- LONG $0x79358d48; WORD $0x002f; BYTE $0x00 // leaq $12153(%rip), %rsi /* _Digits(%rip) */
+ LONG $0xfa358d48; WORD $0x002f; BYTE $0x00 // leaq $12282(%rip), %rsi /* _Digits(%rip) */
MOVB 0(SI)(DX*2), DI
ADDQ DX, DX
MOVB DI, 0(CX)
@@ -1864,7 +1864,7 @@ LBB5_124:
MOVB SI, 0(CX)
WORD $0xd26b; BYTE $0x64 // imull $100, %edx, %edx
SUBL DX, DI
- LONG $0x34158d48; WORD $0x002e; BYTE $0x00 // leaq $11828(%rip), %rdx /* _Digits(%rip) */
+ LONG $0xb5158d48; WORD $0x002e; BYTE $0x00 // leaq $11957(%rip), %rdx /* _Digits(%rip) */
MOVB 0(DX)(DI*2), SI
MOVB 1(DX)(DI*2), DX
MOVB SI, 1(CX)
@@ -1975,7 +1975,7 @@ _u64toa:
ADDQ AX, AX
CMPL SI, $1000
JB LBB7_3
- LONG $0xf80d8d48; WORD $0x002c; BYTE $0x00 // leaq $11512(%rip), %rcx /* _Digits(%rip) */
+ LONG $0x790d8d48; WORD $0x002d; BYTE $0x00 // leaq $11641(%rip), %rcx /* _Digits(%rip) */
MOVB 0(DX)(CX*1), CX
MOVB CX, 0(DI)
MOVL $1, CX
@@ -1989,14 +1989,14 @@ LBB7_3:
LBB7_4:
MOVWLZX DX, DX
ORQ $1, DX
- LONG $0xd7358d48; WORD $0x002c; BYTE $0x00 // leaq $11479(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x58358d48; WORD $0x002d; BYTE $0x00 // leaq $11608(%rip), %rsi /* _Digits(%rip) */
MOVB 0(DX)(SI*1), DX
MOVL CX, SI
INCL CX
MOVB DX, 0(DI)(SI*1)
LBB7_6:
- LONG $0xc6158d48; WORD $0x002c; BYTE $0x00 // leaq $11462(%rip), %rdx /* _Digits(%rip) */
+ LONG $0x47158d48; WORD $0x002d; BYTE $0x00 // leaq $11591(%rip), %rdx /* _Digits(%rip) */
MOVB 0(AX)(DX*1), DX
MOVL CX, SI
INCL CX
@@ -2005,7 +2005,7 @@ LBB7_6:
LBB7_7:
MOVWLZX AX, AX
ORQ $1, AX
- LONG $0xae158d48; WORD $0x002c; BYTE $0x00 // leaq $11438(%rip), %rdx /* _Digits(%rip) */
+ LONG $0x2f158d48; WORD $0x002d; BYTE $0x00 // leaq $11567(%rip), %rdx /* _Digits(%rip) */
MOVB 0(AX)(DX*1), AX
MOVL CX, DX
INCL CX
@@ -2052,7 +2052,7 @@ LBB7_8:
ADDQ R11, R11
CMPL SI, $10000000
JB LBB7_11
- LONG $0x17058d48; WORD $0x002c; BYTE $0x00 // leaq $11287(%rip), %rax /* _Digits(%rip) */
+ LONG $0x98058d48; WORD $0x002c; BYTE $0x00 // leaq $11416(%rip), %rax /* _Digits(%rip) */
MOVB 0(R10)(AX*1), AX
MOVB AX, 0(DI)
MOVL $1, CX
@@ -2066,14 +2066,14 @@ LBB7_11:
LBB7_12:
MOVL R10, AX
ORQ $1, AX
- LONG $0xf2358d48; WORD $0x002b; BYTE $0x00 // leaq $11250(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x73358d48; WORD $0x002c; BYTE $0x00 // leaq $11379(%rip), %rsi /* _Digits(%rip) */
MOVB 0(AX)(SI*1), AX
MOVL CX, SI
INCL CX
MOVB AX, 0(DI)(SI*1)
LBB7_14:
- LONG $0xe1058d48; WORD $0x002b; BYTE $0x00 // leaq $11233(%rip), %rax /* _Digits(%rip) */
+ LONG $0x62058d48; WORD $0x002c; BYTE $0x00 // leaq $11362(%rip), %rax /* _Digits(%rip) */
MOVB 0(R9)(AX*1), AX
MOVL CX, SI
INCL CX
@@ -2082,7 +2082,7 @@ LBB7_14:
LBB7_15:
MOVWLZX R9, AX
ORQ $1, AX
- LONG $0xc7358d48; WORD $0x002b; BYTE $0x00 // leaq $11207(%rip), %rsi /* _Digits(%rip) */
+ LONG $0x48358d48; WORD $0x002c; BYTE $0x00 // leaq $11336(%rip), %rsi /* _Digits(%rip) */
MOVB 0(AX)(SI*1), AX
MOVL CX, DX
MOVB AX, 0(DI)(DX*1)
@@ -2164,7 +2164,7 @@ LBB7_16:
MOVL $16, CX
SUBL AX, CX
SHLQ $4, AX
- LONG $0x3a158d48; WORD $0x002b; BYTE $0x00 // leaq $11066(%rip), %rdx /* _VecShiftShuffles(%rip) */
+ LONG $0xbb158d48; WORD $0x002b; BYTE $0x00 // leaq $11195(%rip), %rdx /* _VecShiftShuffles(%rip) */
LONG $0x0071e2c4; WORD $0x1004 // vpshufb (%rax,%rdx), %xmm1, %xmm0
LONG $0x077ffac5 // vmovdqu %xmm0, (%rdi)
MOVL CX, AX
@@ -2190,7 +2190,7 @@ LBB7_20:
CMPL DX, $99
JA LBB7_22
MOVL DX, AX
- LONG $0x1d0d8d48; WORD $0x002a; BYTE $0x00 // leaq $10781(%rip), %rcx /* _Digits(%rip) */
+ LONG $0x9e0d8d48; WORD $0x002a; BYTE $0x00 // leaq $10910(%rip), %rcx /* _Digits(%rip) */
MOVB 0(CX)(AX*2), DX
MOVB 1(CX)(AX*2), AX
MOVB DX, 0(DI)
@@ -2215,7 +2215,7 @@ LBB7_22:
WORD $0xc96b; BYTE $0x64 // imull $100, %ecx, %ecx
SUBL CX, AX
MOVWLZX AX, AX
- LONG $0xcc0d8d48; WORD $0x0029; BYTE $0x00 // leaq $10700(%rip), %rcx /* _Digits(%rip) */
+ LONG $0x4d0d8d48; WORD $0x002a; BYTE $0x00 // leaq $10829(%rip), %rcx /* _Digits(%rip) */
MOVB 0(CX)(AX*2), DX
MOVB 1(CX)(AX*2), AX
MOVB DX, 1(DI)
@@ -2227,7 +2227,7 @@ LBB7_24:
WORD $0xc86b; BYTE $0x64 // imull $100, %eax, %ecx
SUBL CX, DX
MOVWLZX AX, AX
- LONG $0xa9058d4c; WORD $0x0029; BYTE $0x00 // leaq $10665(%rip), %r8 /* _Digits(%rip) */
+ LONG $0x2a058d4c; WORD $0x002a; BYTE $0x00 // leaq $10794(%rip), %r8 /* _Digits(%rip) */
MOVB 0(R8)(AX*2), CX
MOVB 1(R8)(AX*2), AX
MOVB CX, 0(DI)
@@ -2457,7 +2457,7 @@ LBB8_20:
LBB8_34:
ADDQ BX, AX
MOVBLZX -1(R9), CX
- LONG $0x131d8d48; WORD $0x0028; BYTE $0x00 // leaq $10259(%rip), %rbx /* __UnquoteTab(%rip) */
+ LONG $0x941d8d48; WORD $0x0028; BYTE $0x00 // leaq $10388(%rip), %rbx /* __UnquoteTab(%rip) */
MOVB 0(CX)(BX*1), CX
CMPB CX, $-1
JE LBB8_38
@@ -2864,91 +2864,99 @@ _value:
WORD $0x8948; BYTE $0xe5 // movq %rsp, %rbp
WORD $0x5741 // pushq %r15
WORD $0x5641 // pushq %r14
+ WORD $0x5441 // pushq %r12
BYTE $0x53 // pushq %rbx
- SUBQ $24, SP
+ SUBQ $32, SP
+ MOVL R8, R12
MOVQ CX, R14
MOVQ SI, BX
MOVQ DI, R15
- MOVQ DI, -48(BP)
- MOVQ SI, -40(BP)
- LONG $0xffe0e5e8; BYTE $0xff // callq _lspace
- MOVQ AX, -32(BP)
+ MOVQ DI, -56(BP)
+ MOVQ SI, -48(BP)
+ LONG $0xffe0e0e8; BYTE $0xff // callq _lspace
+ MOVQ AX, -40(BP)
CMPQ AX, BX
JAE LBB9_4
LEAQ 1(AX), CX
- MOVQ CX, -32(BP)
+ MOVQ CX, -40(BP)
MOVBLSX 0(R15)(AX*1), DX
- CMPL DX, $123
- JA LBB9_6
- LONG $0xa7358d48; WORD $0x0001; BYTE $0x00 // leaq $423(%rip), %rsi /* LJTI9_0(%rip) */
+ CMPL DX, $125
+ JA LBB9_8
+ LONG $0x1b358d48; WORD $0x0002; BYTE $0x00 // leaq $539(%rip), %rsi /* LJTI9_0(%rip) */
MOVLQSX 0(SI)(DX*4), DX
ADDQ SI, DX
JMP DX
LBB9_3:
- MOVQ AX, -32(BP)
- LEAQ -48(BP), DI
- LEAQ -32(BP), SI
+ MOVQ AX, -40(BP)
+ LEAQ -56(BP), DI
+ LEAQ -40(BP), SI
MOVQ R14, DX
- LONG $0x0008cae8; BYTE $0x00 // callq _vnumber
- JMP LBB9_5
+ LONG $0x000946e8; BYTE $0x00 // callq _vnumber
+ MOVQ -40(BP), AX
+ JMP LBB9_7
LBB9_4:
- MOVQ $1, 0(R14)
+ MOVQ AX, CX
LBB9_5:
- MOVQ -32(BP), AX
- ADDQ $24, SP
- BYTE $0x5b // popq %rbx
- WORD $0x5e41 // popq %r14
- WORD $0x5f41 // popq %r15
- BYTE $0x5d // popq %rbp
- RET
+ MOVQ $1, 0(R14)
LBB9_6:
- MOVQ $-2, 0(R14)
- JMP LBB9_5
+ MOVQ CX, AX
LBB9_7:
- LEAQ -48(BP), DI
- LEAQ -32(BP), SI
- MOVQ R14, DX
- LONG $0x000369e8; BYTE $0x00 // callq _vstring
- JMP LBB9_5
+ ADDQ $32, SP
+ BYTE $0x5b // popq %rbx
+ WORD $0x5c41 // popq %r12
+ WORD $0x5e41 // popq %r14
+ WORD $0x5f41 // popq %r15
+ BYTE $0x5d // popq %rbp
+ RET
LBB9_8:
- LEAQ -4(BX), DX
- CMPQ AX, DX
- JAE LBB9_19
- MOVL 0(R15)(CX*1), DX
- CMPL DX, $1702063201
- JNE LBB9_21
- ADDQ $5, AX
- MOVQ AX, -32(BP)
- MOVL $4, AX
- MOVQ AX, 0(R14)
- JMP LBB9_5
+ MOVQ $-2, 0(R14)
+ JMP LBB9_7
+
+LBB9_9:
+ LEAQ -56(BP), DI
+ LEAQ -40(BP), SI
+ MOVQ R14, DX
+ LONG $0x0003dde8; BYTE $0x00 // callq _vstring
+ MOVQ -40(BP), AX
+ JMP LBB9_7
+
+LBB9_10:
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $11, SI
+ JMP LBB9_22
LBB9_11:
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $10, SI
+ JMP LBB9_22
+
+LBB9_12:
+ MOVQ $5, 0(R14)
+ JMP LBB9_6
+
+LBB9_13:
LEAQ -3(BX), CX
CMPQ AX, CX
JAE LBB9_20
MOVL 0(R15)(AX*1), DX
CMPL DX, $1819047278
- JNE LBB9_26
+ JNE LBB9_28
ADDQ $4, AX
- MOVQ AX, -32(BP)
+ MOVQ AX, -40(BP)
MOVL $2, CX
- MOVQ CX, 0(R14)
- JMP LBB9_5
-
-LBB9_14:
- MOVQ $6, 0(R14)
- JMP LBB9_5
-
-LBB9_15:
- MOVQ $5, 0(R14)
- JMP LBB9_5
+ JMP LBB9_35
LBB9_16:
LEAQ -3(BX), CX
@@ -2958,63 +2966,79 @@ LBB9_16:
CMPL DX, $1702195828
JNE LBB9_31
ADDQ $4, AX
- MOVQ AX, -32(BP)
+ MOVQ AX, -40(BP)
MOVL $3, CX
- MOVQ CX, 0(R14)
- JMP LBB9_5
-
-LBB9_20:
- MOVQ BX, -32(BP)
- MOVQ $-1, CX
- MOVQ CX, 0(R14)
- JMP LBB9_5
+ JMP LBB9_35
LBB9_19:
- MOVQ BX, -32(BP)
- MOVQ $-1, AX
- MOVQ AX, 0(R14)
- JMP LBB9_5
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $13, SI
+ JMP LBB9_22
+
+LBB9_20:
+ MOVQ BX, -40(BP)
+ MOVQ $-1, CX
+ JMP LBB9_36
LBB9_21:
- MOVQ $-2, AX
- CMPB DX, $97
- JNE LBB9_25
- MOVL $1702063201, DX
+ XORL AX, AX
+ TESTL R12, R12
+ SETEQ AX
+ MOVQ $-2, DX
+ MOVL $12, SI
+
+LBB9_22:
+ LONG $0xf2440f48 // cmoveq %rdx, %rsi
+ MOVQ SI, 0(R14)
+ SUBQ AX, CX
+ JMP LBB9_6
LBB9_23:
- SHRL $8, DX
- MOVBLSX 1(R15)(CX*1), SI
- INCQ CX
- MOVBLZX DX, DI
- CMPL DI, SI
- JE LBB9_23
- MOVQ CX, -32(BP)
-
-LBB9_25:
- MOVQ AX, 0(R14)
- JMP LBB9_5
+ LEAQ -4(BX), DX
+ CMPQ AX, DX
+ JAE LBB9_27
+ MOVL 0(R15)(CX*1), SI
+ CMPL SI, $1702063201
+ JNE LBB9_37
+ ADDQ $5, AX
+ MOVQ AX, -40(BP)
+ MOVL $4, DX
+ MOVQ AX, BX
+ JMP LBB9_42
LBB9_26:
- MOVQ AX, -32(BP)
- MOVQ $-2, CX
- CMPB DX, $110
- JNE LBB9_30
- MOVL $1819047278, DX
+ MOVQ $6, 0(R14)
+ JMP LBB9_6
+
+LBB9_27:
+ MOVQ BX, -40(BP)
+ MOVQ $-1, DX
+ JMP LBB9_42
LBB9_28:
+ MOVQ AX, -40(BP)
+ MOVQ $-2, CX
+ CMPB DX, $110
+ JNE LBB9_35
+ MOVL $1819047278, DX
+
+LBB9_30:
SHRL $8, DX
MOVBLSX 1(R15)(AX*1), SI
INCQ AX
MOVBLZX DX, DI
CMPL DI, SI
- JE LBB9_28
- JMP LBB9_29
+ JE LBB9_30
+ JMP LBB9_34
LBB9_31:
- MOVQ AX, -32(BP)
+ MOVQ AX, -40(BP)
MOVQ $-2, CX
CMPB DX, $116
- JNE LBB9_30
+ JNE LBB9_35
MOVL $1702195828, DX
LBB9_33:
@@ -3025,147 +3049,180 @@ LBB9_33:
CMPL DI, SI
JE LBB9_33
-LBB9_29:
- MOVQ AX, -32(BP)
+LBB9_34:
+ MOVQ AX, -40(BP)
-LBB9_30:
+LBB9_35:
+ MOVQ AX, BX
+
+LBB9_36:
MOVQ CX, 0(R14)
- JMP LBB9_5
+ MOVQ BX, AX
+ JMP LBB9_7
-// .set L9_0_set_4, LBB9_4-LJTI9_0
-// .set L9_0_set_6, LBB9_6-LJTI9_0
-// .set L9_0_set_7, LBB9_7-LJTI9_0
-// .set L9_0_set_3, LBB9_3-LJTI9_0
-// .set L9_0_set_15, LBB9_15-LJTI9_0
+LBB9_37:
+ MOVQ $-2, DX
+ CMPB SI, $97
+ JNE LBB9_41
+ MOVL $1702063201, AX
+
+LBB9_39:
+ SHRL $8, AX
+ MOVBLSX 1(R15)(CX*1), SI
+ INCQ CX
+ MOVBLZX AX, DI
+ CMPL DI, SI
+ JE LBB9_39
+ MOVQ CX, -40(BP)
+
+LBB9_41:
+ MOVQ CX, BX
+
+LBB9_42:
+ MOVQ DX, 0(R14)
+ MOVQ BX, AX
+ JMP LBB9_7
+
+// .set L9_0_set_5, LBB9_5-LJTI9_0
// .set L9_0_set_8, LBB9_8-LJTI9_0
+// .set L9_0_set_9, LBB9_9-LJTI9_0
+// .set L9_0_set_10, LBB9_10-LJTI9_0
+// .set L9_0_set_3, LBB9_3-LJTI9_0
// .set L9_0_set_11, LBB9_11-LJTI9_0
+// .set L9_0_set_12, LBB9_12-LJTI9_0
+// .set L9_0_set_21, LBB9_21-LJTI9_0
+// .set L9_0_set_23, LBB9_23-LJTI9_0
+// .set L9_0_set_13, LBB9_13-LJTI9_0
// .set L9_0_set_16, LBB9_16-LJTI9_0
-// .set L9_0_set_14, LBB9_14-LJTI9_0
+// .set L9_0_set_26, LBB9_26-LJTI9_0
+// .set L9_0_set_19, LBB9_19-LJTI9_0
LJTI9_0:
- LONG $0xfffffe78 // .long L9_0_set_4
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe97 // .long L9_0_set_7
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe62 // .long L9_0_set_3
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xffffff12 // .long L9_0_set_15
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffea9 // .long L9_0_set_8
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffed8 // .long L9_0_set_11
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xffffff1e // .long L9_0_set_16
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xfffffe8e // .long L9_0_set_6
- LONG $0xffffff06 // .long L9_0_set_14
+ LONG $0xfffffe0b // .long L9_0_set_5
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe2b // .long L9_0_set_9
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe41 // .long L9_0_set_10
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffdee // .long L9_0_set_3
+ LONG $0xfffffe5a // .long L9_0_set_11
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe73 // .long L9_0_set_12
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffef8 // .long L9_0_set_21
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xffffff1b // .long L9_0_set_23
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe7c // .long L9_0_set_13
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffea7 // .long L9_0_set_16
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xffffff49 // .long L9_0_set_26
+ LONG $0xfffffe22 // .long L9_0_set_8
+ LONG $0xfffffed2 // .long L9_0_set_19
LCPI10_0:
QUAD $0x2222222222222222; QUAD $0x2222222222222222 // .space 16, '""""""""""""""""'
@@ -3187,7 +3244,7 @@ _vstring:
MOVQ BX, SI
MOVL $34, DX
MOVL $92, CX
- LONG $0xffe15ce8; BYTE $0xff // callq _strchr2
+ LONG $0xffe0dbe8; BYTE $0xff // callq _strchr2
TESTQ AX, AX
JS LBB10_4
MOVQ BX, -48(BP)
@@ -4216,7 +4273,7 @@ LBB15_7:
MOVQ 0(R15), DI
MOVQ 8(R15), SI
MOVQ 0(BX), DX
- LONG $0xffd167e8; BYTE $0xff // callq _lspace
+ LONG $0xffd0e6e8; BYTE $0xff // callq _lspace
MOVQ AX, CX
MOVQ AX, 0(BX)
CMPQ AX, 8(R15)
@@ -4697,7 +4754,7 @@ _skip_string:
MOVQ R15, SI
MOVL $34, DX
MOVL $92, CX
- LONG $0xffcfc6e8; BYTE $0xff // callq _strchr2
+ LONG $0xffcf45e8; BYTE $0xff // callq _strchr2
TESTQ AX, AX
JS LBB18_3
MOVQ AX, CX
@@ -6302,7 +6359,7 @@ TEXT ·__skip_array(SB), NOSPLIT, $0 - 32
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ m+16(FP), DX
- CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+14619(SB) // _skip_array
+ CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+14748(SB) // _skip_array
MOVQ AX, ret+24(FP)
RET
@@ -6310,7 +6367,7 @@ TEXT ·__skip_object(SB), NOSPLIT, $0 - 32
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ m+16(FP), DX
- CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+14654(SB) // _skip_object
+ CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+14783(SB) // _skip_object
MOVQ AX, ret+24(FP)
RET
@@ -6318,7 +6375,7 @@ TEXT ·__skip_one(SB), NOSPLIT, $0 - 32
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ m+16(FP), DX
- CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+13066(SB) // _skip_one
+ CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+13195(SB) // _skip_one
MOVQ AX, ret+24(FP)
RET
@@ -6339,39 +6396,40 @@ TEXT ·__unquote(SB), NOSPLIT, $0 - 48
MOVQ AX, ret+40(FP)
RET
-TEXT ·__value(SB), NOSPLIT, $0 - 40
+TEXT ·__value(SB), NOSPLIT, $0 - 48
MOVQ s+0(FP), DI
MOVQ n+8(FP), SI
MOVQ p+16(FP), DX
MOVQ v+24(FP), CX
+ MOVQ allow_control+32(FP), R8
CALL ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+9196(SB) // _value
- MOVQ AX, ret+32(FP)
+ MOVQ AX, ret+40(FP)
RET
TEXT ·__vnumber(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+11544(SB), AX // _vnumber
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+11673(SB), AX // _vnumber
JMP AX
TEXT ·__vsigned(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12516(SB), AX // _vsigned
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12645(SB), AX // _vsigned
JMP AX
TEXT ·__vstring(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+10216(SB), AX // _vstring
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+10345(SB), AX // _vstring
JMP AX
TEXT ·__vunsigned(SB), NOSPLIT, $0 - 24
MOVQ s+0(FP), DI
MOVQ p+8(FP), SI
MOVQ v+16(FP), DX
- LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12793(SB), AX // _vunsigned
+ LEAQ ·___asm2asm_compiled_code__DO_NOT_CALL_THIS_SYMBOL___+12922(SB), AX // _vunsigned
JMP AX
diff --git a/internal/native/avx2/native_amd64_test.go b/internal/native/avx2/native_amd64_test.go
index a1d4e3a..9e9fce7 100644
--- a/internal/native/avx2/native_amd64_test.go
+++ b/internal/native/avx2/native_amd64_test.go
@@ -36,7 +36,7 @@ func TestNative_Value(t *testing.T) {
var v types.JsonState
s := ` -12345`
p := (*rt.GoString)(unsafe.Pointer(&s))
- x := __value(p.Ptr, p.Len, 0, &v)
+ x := __value(p.Ptr, p.Len, 0, &v, 0)
assert.Equal(t, 9, x)
assert.Equal(t, types.V_INTEGER, v.Vt)
assert.Equal(t, int64(-12345), v.Iv)
diff --git a/internal/native/avx2/native_export_amd64.go b/internal/native/avx2/native_export_amd64.go
index 93d200c..82043e0 100644
--- a/internal/native/avx2/native_export_amd64.go
+++ b/internal/native/avx2/native_export_amd64.go
@@ -31,7 +31,6 @@ var (
)
var (
- S_value = _subr__value
S_vstring = _subr__vstring
S_vnumber = _subr__vnumber
S_vsigned = _subr__vsigned
diff --git a/internal/native/avx2/native_subr_amd64.go b/internal/native/avx2/native_subr_amd64.go
index 963566a..eb7f6b8 100644
--- a/internal/native/avx2/native_subr_amd64.go
+++ b/internal/native/avx2/native_subr_amd64.go
@@ -19,16 +19,16 @@ var (
_subr__lquote = **(**uintptr)(unsafe.Pointer(&_func__base)) + 376
_subr__lspace = **(**uintptr)(unsafe.Pointer(&_func__base)) + 1268
_subr__lzero = **(**uintptr)(unsafe.Pointer(&_func__base)) + 0
- _subr__skip_array = **(**uintptr)(unsafe.Pointer(&_func__base)) + 14619
- _subr__skip_object = **(**uintptr)(unsafe.Pointer(&_func__base)) + 14654
- _subr__skip_one = **(**uintptr)(unsafe.Pointer(&_func__base)) + 13066
+ _subr__skip_array = **(**uintptr)(unsafe.Pointer(&_func__base)) + 14748
+ _subr__skip_object = **(**uintptr)(unsafe.Pointer(&_func__base)) + 14783
+ _subr__skip_one = **(**uintptr)(unsafe.Pointer(&_func__base)) + 13195
_subr__u64toa = **(**uintptr)(unsafe.Pointer(&_func__base)) + 6195
_subr__unquote = **(**uintptr)(unsafe.Pointer(&_func__base)) + 7419
_subr__value = **(**uintptr)(unsafe.Pointer(&_func__base)) + 9196
- _subr__vnumber = **(**uintptr)(unsafe.Pointer(&_func__base)) + 11544
- _subr__vsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12516
- _subr__vstring = **(**uintptr)(unsafe.Pointer(&_func__base)) + 10216
- _subr__vunsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12793
+ _subr__vnumber = **(**uintptr)(unsafe.Pointer(&_func__base)) + 11673
+ _subr__vsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12645
+ _subr__vstring = **(**uintptr)(unsafe.Pointer(&_func__base)) + 10345
+ _subr__vunsigned = **(**uintptr)(unsafe.Pointer(&_func__base)) + 12922
)
var (
diff --git a/internal/native/dispatch_amd64.go b/internal/native/dispatch_amd64.go
index e968d56..238dff7 100644
--- a/internal/native/dispatch_amd64.go
+++ b/internal/native/dispatch_amd64.go
@@ -35,7 +35,6 @@ var (
)
var (
- S_value uintptr
S_vstring uintptr
S_vnumber uintptr
S_vsigned uintptr
@@ -66,7 +65,7 @@ func Lspace(sp unsafe.Pointer, nb int, off int) int
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
-func Value(s unsafe.Pointer, n int, p int, v *types.JsonState) int
+func Value(s unsafe.Pointer, n int, p int, v *types.JsonState, allow_control int) int
//go:nosplit
//go:noescape
@@ -85,7 +84,6 @@ func useAVX() {
S_lquote = avx.S_lquote
S_lspace = avx.S_lspace
S_unquote = avx.S_unquote
- S_value = avx.S_value
S_vstring = avx.S_vstring
S_vnumber = avx.S_vnumber
S_vsigned = avx.S_vsigned
@@ -102,7 +100,6 @@ func useAVX2() {
S_lquote = avx2.S_lquote
S_lspace = avx2.S_lspace
S_unquote = avx2.S_unquote
- S_value = avx2.S_value
S_vstring = avx2.S_vstring
S_vnumber = avx2.S_vnumber
S_vsigned = avx2.S_vsigned
diff --git a/internal/native/dispatch_amd64.s b/internal/native/dispatch_amd64.s
index 85041fd..210c1bf 100644
--- a/internal/native/dispatch_amd64.s
+++ b/internal/native/dispatch_amd64.s
@@ -36,7 +36,7 @@ TEXT ·Lspace(SB), NOSPLIT, $0 - 32
JMP github·com∕bytedance∕sonic∕internal∕native∕avx2·__lspace(SB)
JMP github·com∕bytedance∕sonic∕internal∕native∕avx·__lspace(SB)
-TEXT ·Value(SB), NOSPLIT, $0 - 40
+TEXT ·Value(SB), NOSPLIT, $0 - 48
CMPB github·com∕bytedance∕sonic∕internal∕cpu·HasAVX2(SB), $0
JE 2(PC)
JMP github·com∕bytedance∕sonic∕internal∕native∕avx2·__value(SB)
diff --git a/internal/native/native_amd64.tmpl b/internal/native/native_amd64.tmpl
index f503015..7ce573b 100644
--- a/internal/native/native_amd64.tmpl
+++ b/internal/native/native_amd64.tmpl
@@ -55,7 +55,7 @@ func __lspace(sp unsafe.Pointer, nb int, off int) (ret int)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
-func __value(s unsafe.Pointer, n int, p int, v *types.JsonState) (ret int)
+func __value(s unsafe.Pointer, n int, p int, v *types.JsonState, allow_control int) (ret int)
//go:nosplit
//go:noescape
diff --git a/internal/native/native_amd64_test.tmpl b/internal/native/native_amd64_test.tmpl
index fdcd27b..a936116 100644
--- a/internal/native/native_amd64_test.tmpl
+++ b/internal/native/native_amd64_test.tmpl
@@ -34,7 +34,7 @@ func TestNative_Value(t *testing.T) {
var v types.JsonState
s := ` -12345`
p := (*rt.GoString)(unsafe.Pointer(&s))
- x := __value(p.Ptr, p.Len, 0, &v)
+ x := __value(p.Ptr, p.Len, 0, &v, 0)
assert.Equal(t, 9, x)
assert.Equal(t, types.V_INTEGER, v.Vt)
assert.Equal(t, int64(-12345), v.Iv)
diff --git a/internal/native/native_export_amd64.tmpl b/internal/native/native_export_amd64.tmpl
index c662202..b0cd27c 100644
--- a/internal/native/native_export_amd64.tmpl
+++ b/internal/native/native_export_amd64.tmpl
@@ -29,7 +29,6 @@ var (
)
var (
- S_value = _subr__value
S_vstring = _subr__vstring
S_vnumber = _subr__vnumber
S_vsigned = _subr__vsigned
diff --git a/internal/native/types/types.go b/internal/native/types/types.go
index d88c814..f9e990c 100644
--- a/internal/native/types/types.go
+++ b/internal/native/types/types.go
@@ -25,16 +25,19 @@ type ParsingError uint
type SearchingError uint
const (
- V_EOF ValueType = 1
- V_NULL ValueType = 2
- V_TRUE ValueType = 3
- V_FALSE ValueType = 4
- V_ARRAY ValueType = 5
- V_OBJECT ValueType = 6
- V_STRING ValueType = 7
- V_DOUBLE ValueType = 8
- V_INTEGER ValueType = 9
- V_MAX
+ V_EOF ValueType = 1
+ V_NULL ValueType = 2
+ V_TRUE ValueType = 3
+ V_FALSE ValueType = 4
+ V_ARRAY ValueType = 5
+ V_OBJECT ValueType = 6
+ V_STRING ValueType = 7
+ V_DOUBLE ValueType = 8
+ V_INTEGER ValueType = 9
+ V_KEY_SEP ValueType = 10
+ V_ELEM_SEP ValueType = 11
+ V_ARRAY_END ValueType = 12
+ V_OBJECT_END ValueType = 13
)
const (
diff --git a/issue16_test.go b/issue16_test.go
new file mode 100644
index 0000000..5b48963
--- /dev/null
+++ b/issue16_test.go
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2021 ByteDance Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package sonic
+
+import (
+ `io/ioutil`
+ `testing`
+
+ `github.com/stretchr/testify/require`
+)
+
+func benchmarkEncodeSonic(b *testing.B, data []byte) {
+ var xbook = map[string]interface{}{}
+ if err := Unmarshal(data, &xbook); err != nil {
+ b.Fatal(err)
+ }
+ if _, err := Marshal(&xbook); err != nil {
+ b.Fatal(err)
+ }
+ b.SetBytes(int64(len(data)))
+ b.ReportAllocs()
+ b.ResetTimer()
+ for i := 0; i < b.N; i++ {
+ _, _ = Marshal(&xbook)
+ }
+}
+
+func BenchmarkIssue16(b *testing.B) {
+ data, err := ioutil.ReadFile("testdata/twitterescaped.json")
+ require.Nil(b, err)
+ benchmarkEncodeSonic(b, data)
+}
\ No newline at end of file
diff --git a/native/native.h b/native/native.h
index 8548b8b..f7a0cd6 100644
--- a/native/native.h
+++ b/native/native.h
@@ -30,6 +30,10 @@
#define V_STRING 7
#define V_DOUBLE 8
#define V_INTEGER 9
+#define V_KEY_SEP 10
+#define V_ELEM_SEP 11
+#define V_ARRAY_END 12
+#define V_OBJECT_END 13
#define F_DBLUNQ (1 << 0)
#define F_UNIREP (1 << 1)
@@ -97,7 +101,7 @@ ssize_t unquote(const char *sp, ssize_t nb, char *dp, ssize_t *ep, uint64_t flag
ssize_t strchr1(const GoString *s, size_t p, char ch);
ssize_t strchr2(const GoString *s, size_t p, char c0, char c1);
-long value(const char *s, size_t n, long p, JsonState *ret);
+long value(const char *s, size_t n, long p, JsonState *ret, int allow_control);
void vstring(const GoString *src, long *p, JsonState *ret);
void vnumber(const GoString *src, long *p, JsonState *ret);
void vsigned(const GoString *src, long *p, JsonState *ret);
diff --git a/native/scanning.c b/native/scanning.c
index 3bbf7be..1af4244 100644
--- a/native/scanning.c
+++ b/native/scanning.c
@@ -318,7 +318,7 @@ static inline int64_t advance_number(const GoString *src, long *p, long i, JsonS
/** Value Scanning Routines **/
-long value(const char *s, size_t n, long p, JsonState *ret) {
+long value(const char *s, size_t n, long p, JsonState *ret, int allow_control) {
long q = p;
GoString m = {.buf = s, .len = n};
@@ -341,8 +341,12 @@ long value(const char *s, size_t n, long p, JsonState *ret) {
case 'f' : ret->vt = advance_dword(&m, &q, 0, V_FALSE, VS_ALSE) ; return q;
case '[' : ret->vt = V_ARRAY ; return q;
case '{' : ret->vt = V_OBJECT ; return q;
+ case ':' : ret->vt = allow_control ? V_KEY_SEP : -ERR_INVAL ; return allow_control ? q : q - 1;
+ case ',' : ret->vt = allow_control ? V_ELEM_SEP : -ERR_INVAL ; return allow_control ? q : q - 1;
+ case ']' : ret->vt = allow_control ? V_ARRAY_END : -ERR_INVAL ; return allow_control ? q : q - 1;
+ case '}' : ret->vt = allow_control ? V_OBJECT_END : -ERR_INVAL ; return allow_control ? q : q - 1;
case 0 : ret->vt = V_EOF ; return q;
- default : ret->vt = -ERR_INVAL ; return q;
+ default : ret->vt = -ERR_INVAL ; return q - 1;
}
}
diff --git a/testdata/twitterescaped.json b/testdata/twitterescaped.json
new file mode 100644
index 0000000..4325ff7
--- /dev/null
+++ b/testdata/twitterescaped.json
@@ -0,0 +1 @@
+{"statuses":[{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:15 +0000 2014","id":505874924095815700,"id_str":"505874924095815681","text":"@aym0566x \n\n\u540D\u524D:\u524D\u7530\u3042\u3086\u307F\n\u7B2C\u4E00\u5370\u8C61:\u306A\u3093\u304B\u6016\u3063\uFF01\n\u4ECA\u306E\u5370\u8C61:\u3068\u308A\u3042\u3048\u305A\u30AD\u30E2\u3044\u3002\u565B\u307F\u5408\u308F\u306A\u3044\n\u597D\u304D\u306A\u3068\u3053\u308D:\u3076\u3059\u3067\u30AD\u30E2\u3044\u3068\u3053\uD83D\uDE0B\u2728\u2728\n\u601D\u3044\u51FA:\u3093\u30FC\u30FC\u30FC\u3001\u3042\u308A\u3059\u304E\uD83D\uDE0A\u2764\uFE0F\nLINE\u4EA4\u63DB\u3067\u304D\u308B\uFF1F:\u3042\u3041\u2026\u2026\u3054\u3081\u3093\u270B\n\u30C8\u30D7\u753B\u3092\u307F\u3066:\u7167\u308C\u307E\u3059\u304C\u306A\uD83D\uDE18\u2728\n\u4E00\u8A00:\u304A\u524D\u306F\u4E00\u751F\u3082\u3093\u306E\u30C0\u30C1\uD83D\uDC96","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":866260188,"in_reply_to_user_id_str":"866260188","in_reply_to_screen_name":"aym0566x","user":{"id":1186275104,"id_str":"1186275104","name":"AYUMI","screen_name":"ayuu0123","location":"","description":"\u5143\u91CE\u7403\u90E8\u30DE\u30CD\u30FC\u30B8\u30E3\u30FC\u2764\uFE0E\u2026\u6700\u9AD8\u306E\u590F\u3092\u3042\u308A\u304C\u3068\u3046\u2026\u2764\uFE0E","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":262,"friends_count":252,"listed_count":0,"created_at":"Sat Feb 16 13:40:25 +0000 2013","favourites_count":235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1769,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/497760886795153410/LDjAwR_y_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1186275104/1409318784","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"aym0566x","name":"\u524D\u7530\u3042\u3086\u307F","id":866260188,"id_str":"866260188","indices":[0,9]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:14 +0000 2014","id":505874922023837700,"id_str":"505874922023837696","text":"RT @KATANA77: \u3048\u3063\u305D\u308C\u306F\u30FB\u30FB\u30FB\uFF08\u4E00\u540C\uFF09 http://t.co/PkCJAcSuYK","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":903487807,"id_str":"903487807","name":"RT&\u30D5\u30A1\u30DC\u9B54\u306E\u3080\u3063\u3064\u3093\u3055\u3063m","screen_name":"yuttari1998","location":"\u95A2\u897F \u2193\u8A73\u3057\u3044\u30D7\u30ED\u2193","description":"\u7121\u8A00\u30D5\u30A9\u30ED\u30FC\u306F\u3042\u307E\u308A\u597D\u307F\u307E\u305B\u3093 \u30B2\u30FC\u30E0\u3068\u52D5\u753B\u304C\u597D\u304D\u3067\u3059\u30B7\u30E2\u91CE\u90CE\u3067\u3059\u304C\u3088\u308D\u3057\u304F\u2026\u6700\u8FD1\u306FMGS\u3068\u30D6\u30EC\u30A4\u30D6\u30EB\u30FC\u3001\u97F3\u30B2\u30FC\u3092\u30D7\u30EC\u30A4\u3057\u3066\u307E\u3059","url":"http://t.co/Yg9e1Fl8wd","entities":{"url":{"urls":[{"url":"http://t.co/Yg9e1Fl8wd","expanded_url":"http://twpf.jp/yuttari1998","display_url":"twpf.jp/yuttari1998","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":158,"listed_count":1,"created_at":"Thu Oct 25 08:27:13 +0000 2012","favourites_count":3652,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10276,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/500268849275494400/AoXHZ7Ij_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/903487807/1409062272","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 23:49:35 +0000 2014","id":505864943636197400,"id_str":"505864943636197376","text":"\u3048\u3063\u305D\u308C\u306F\u30FB\u30FB\u30FB\uFF08\u4E00\u540C\uFF09 http://t.co/PkCJAcSuYK","source":"Twitter Web Client","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77915997,"id_str":"77915997","name":"(\u6709)\u5200","screen_name":"KATANA77","location":"","description":"\u30D7\u30EA\u30AD\u30E5\u30A2\u597D\u304D\u306E\u30B5\u30E9\u30EA\u30FC\u30DE\u30F3\u3067\u3059\u3002\u597D\u304D\u306A\u30D7\u30EA\u30AD\u30E5\u30A2\u30B7\u30EA\u30FC\u30BA\u306F\u30CF\u30FC\u30C8\u30AD\u30E3\u30C3\u30C1\u3001\u6700\u611B\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306F\u6708\u5F71\u3086\u308A\u3055\u3093\u3067\u3059\u3002 http://t.co/QMLJeFmfMT\u3054\u8CEA\u554F\u3001\u304A\u554F\u3044\u5408\u308F\u305B\u306F\u3053\u3061\u3089 http://t.co/LU8T7vmU3h","url":null,"entities":{"description":{"urls":[{"url":"http://t.co/QMLJeFmfMT","expanded_url":"http://www.pixiv.net/member.php?id=4776","display_url":"pixiv.net/member.php?id=\u2026","indices":[58,80]},{"url":"http://t.co/LU8T7vmU3h","expanded_url":"http://ask.fm/KATANA77","display_url":"ask.fm/KATANA77","indices":[95,117]}]}},"protected":false,"followers_count":1095,"friends_count":740,"listed_count":50,"created_at":"Mon Sep 28 03:41:27 +0000 2009","favourites_count":3741,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":19059,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/808597451/45b82f887085d32bd4b87dfc348fe22a.png","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/480210114964504577/MjVIEMS4_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/77915997/1404661392","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":82,"favorite_count":42,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[],"media":[{"id":505864942575034400,"id_str":"505864942575034369","indices":[13,35],"media_url":"http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg","media_url_https":"https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg","url":"http://t.co/PkCJAcSuYK","display_url":"pic.twitter.com/PkCJAcSuYK","expanded_url":"http://twitter.com/KATANA77/status/505864943636197376/photo/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":765,"h":432,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":82,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"KATANA77","name":"(\u6709)\u5200","id":77915997,"id_str":"77915997","indices":[3,12]}],"media":[{"id":505864942575034400,"id_str":"505864942575034369","indices":[27,49],"media_url":"http://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg","media_url_https":"https://pbs.twimg.com/media/BwUxfC6CIAEr-Ye.jpg","url":"http://t.co/PkCJAcSuYK","display_url":"pic.twitter.com/PkCJAcSuYK","expanded_url":"http://twitter.com/KATANA77/status/505864943636197376/photo/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":765,"h":432,"resize":"fit"}},"source_status_id":505864943636197400,"source_status_id_str":"505864943636197376"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:14 +0000 2014","id":505874920140591100,"id_str":"505874920140591104","text":"@longhairxMIURA \u671D\u4E00\u30E9\u30A4\u30AB\u30B9\u8F9B\u76EE\u3060\u3088w","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":505874728897085440,"in_reply_to_status_id_str":"505874728897085440","in_reply_to_user_id":114188950,"in_reply_to_user_id_str":"114188950","in_reply_to_screen_name":"longhairxMIURA","user":{"id":114786346,"id_str":"114786346","name":"PROTECT-T","screen_name":"ttm_protect","location":"\u9759\u5CA1\u770C\u9577\u6CC9\u753A","description":"24 / XXX / @andprotector / @lifefocus0545 potato design works","url":"http://t.co/5EclbQiRX4","entities":{"url":{"urls":[{"url":"http://t.co/5EclbQiRX4","expanded_url":"http://ap.furtherplatonix.net/index.html","display_url":"ap.furtherplatonix.net/index.html","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1387,"friends_count":903,"listed_count":25,"created_at":"Tue Feb 16 16:13:41 +0000 2010","favourites_count":492,"utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"verified":false,"statuses_count":12679,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/481360383253295104/4B9Rcfys_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/114786346/1403600232","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"longhairxMIURA","name":"miura desu","id":114188950,"id_str":"114188950","indices":[0,15]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:14 +0000 2014","id":505874919020699650,"id_str":"505874919020699648","text":"RT @omo_kko: \u30E9\u30A6\u30EF\u30F3\u8131\u51FA\u2192\u53CB\u9054\u304C\u5BB6\u306B\u9023\u3093\u3067\u5E30\u3063\u3066\u3063\u3066\u8A00\u3046\u304B\u3089\u53CB\u9054\u3093\u5BB6\u306B\u4E57\u305B\u3066\u5E30\u308B(1\u5EA6\u3082\u884C\u3063\u305F\u3053\u3068\u306A\u3044\u7530\u820E\u9053)\u2192\u53CB\u9054\u304A\u308D\u3057\u3066\u8FF7\u5B50\u2192500\u30E1\u30FC\u30C8\u30EB\u304F\u3089\u3044\u7D9A\u304F\u5909\u306A\u4E00\u672C\u9053\u9032\u3080\u2192\u5893\u5730\u3067\u884C\u304D\u6B62\u307E\u308A\u3067U\u30BF\u30FC\u30F3\u51FA\u6765\u305A\u30D0\u30C3\u30AF\u3067500\u30E1\u30FC\u30C8\u30EB\u5143\u306E\u3068\u3053\u308D\u307E\u3067\u9032\u307E\u306A\u3044\u3068\u3044\u3051\u306A\u3044\u2190\u4ECA\u3053\u3053","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392585658,"id_str":"392585658","name":"\u539F\u7A3F","screen_name":"chibu4267","location":"\u30AD\u30DF\u306E\u90E8\u5C4B\u306E\u71C3\u3048\u308B\u30B4\u30DF\u7BB1","description":"RT\u3057\u3066TL\u306B\u6FC1\u6D41\u3092\u8D77\u3053\u3059\u304B\u3089\u30D5\u30A9\u30ED\u30FC\u3057\u306A\u3044\u65B9\u304C\u826F\u3044\u3088 \u8A00\u3063\u3066\u308B\u3053\u3068\u3082\u3064\u307E\u3089\u306A\u3044\u3057 \u8A73\u7D30\u2192http://t.co/ANSFlYXERJ \u76F8\u65B9@1life_5106_hshd \u845B\u897F\u6559\u5F92\u305D\u306E\u58F1","url":"http://t.co/JTFjV89eaN","entities":{"url":{"urls":[{"url":"http://t.co/JTFjV89eaN","expanded_url":"http://www.pixiv.net/member.php?id=1778417","display_url":"pixiv.net/member.php?id=\u2026","indices":[0,22]}]},"description":{"urls":[{"url":"http://t.co/ANSFlYXERJ","expanded_url":"http://twpf.jp/chibu4267","display_url":"twpf.jp/chibu4267","indices":[45,67]}]}},"protected":false,"followers_count":1324,"friends_count":1165,"listed_count":99,"created_at":"Mon Oct 17 08:23:46 +0000 2011","favourites_count":9542,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":369420,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/453106940822814720/PcJIZv43.png","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/505731759216943107/pzhnkMEg_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/392585658/1362383911","profile_link_color":"5EB9FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 16:51:09 +0000 2014","id":505759640164892700,"id_str":"505759640164892673","text":"\u30E9\u30A6\u30EF\u30F3\u8131\u51FA\u2192\u53CB\u9054\u304C\u5BB6\u306B\u9023\u3093\u3067\u5E30\u3063\u3066\u3063\u3066\u8A00\u3046\u304B\u3089\u53CB\u9054\u3093\u5BB6\u306B\u4E57\u305B\u3066\u5E30\u308B(1\u5EA6\u3082\u884C\u3063\u305F\u3053\u3068\u306A\u3044\u7530\u820E\u9053)\u2192\u53CB\u9054\u304A\u308D\u3057\u3066\u8FF7\u5B50\u2192500\u30E1\u30FC\u30C8\u30EB\u304F\u3089\u3044\u7D9A\u304F\u5909\u306A\u4E00\u672C\u9053\u9032\u3080\u2192\u5893\u5730\u3067\u884C\u304D\u6B62\u307E\u308A\u3067U\u30BF\u30FC\u30F3\u51FA\u6765\u305A\u30D0\u30C3\u30AF\u3067500\u30E1\u30FC\u30C8\u30EB\u5143\u306E\u3068\u3053\u308D\u307E\u3067\u9032\u307E\u306A\u3044\u3068\u3044\u3051\u306A\u3044\u2190\u4ECA\u3053\u3053","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":309565423,"id_str":"309565423","name":"\u304A\u3082\u3063\u3053","screen_name":"omo_kko","location":"","description":"\u3071\u3093\u3059\u3068","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":730,"friends_count":200,"listed_count":23,"created_at":"Thu Jun 02 09:15:51 +0000 2011","favourites_count":5441,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":30012,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/499126939378929664/GLWpIKTW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/309565423/1409418370","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":67,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"omo_kko","name":"\u304A\u3082\u3063\u3053","id":309565423,"id_str":"309565423","indices":[3,11]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:13 +0000 2014","id":505874918198624260,"id_str":"505874918198624256","text":"RT @thsc782_407: #LED\u30AB\u30C4\u30AB\u30C4\u9078\u624B\u6A29\n\u6F22\u5B57\u4E00\u6587\u5B57\u3076\u3093\u306E\u30B9\u30DA\u30FC\u30B9\u306B\u300C\u30CF\u30A6\u30B9\u30C6\u30F3\u30DC\u30B9\u300D\u3092\u53CE\u3081\u308B\u72C2\u6C17 http://t.co/vmrreDMziI","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":753161754,"id_str":"753161754","name":"\u306D\u3053\u306D\u3053\u307F\u304B\u3093\uFF0A","screen_name":"nekonekomikan","location":"\u30BD\u30FC\u30C0\u6C34\u306E\u3042\u3075\u308C\u308B\u30D3\u30F3\u306E\u4E2D","description":"\u732B\u00D76\u3001\u5927\u5B66\u30FB\u9AD8\u6821\u30FB\u65E6\u90A3\u54041\u3068\u66AE\u3089\u3057\u3066\u3044\u307E\u3059\u3002\u732B\u3001\u5B50\u4F9B\u3001\u65E5\u5E38\u601D\u3063\u305F\u4E8B\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u307E\u3059\uFF0F\u4ECA\u5E74\u306E\u76EE\u6A19\uFF1A\u8AAD\u66F8\u3001\u5EAD\u306E\u624B\u5165\u308C\u3001\u30E9\u30F3\u30CB\u30F3\u30B0\u3001\u624B\u82B8\uFF0F\u732B\uFF0A\u82B1\uFF0A\u5199\u771F\uFF0A\u8A69\uFF0A\u6797\u3082\u3082\u3053\u3055\u3093\uFF0A\u9244\u9053\u306A\u3069\u597D\u304D\u306A\u65B9\u3092\u30D5\u30A9\u30ED\u30FC\u3055\u305B\u3066\u3044\u305F\u3060\u3044\u3066\u3044\u307E\u3059\u3002\u3088\u308D\u3057\u304F\u304A\u9858\u3044\u3057\u307E\u3059\u266C","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":217,"friends_count":258,"listed_count":8,"created_at":"Sun Aug 12 14:00:47 +0000 2012","favourites_count":7650,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":20621,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/470627990271848448/m83uy6Vc_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Fri Feb 28 16:04:13 +0000 2014","id":439430848190742500,"id_str":"439430848190742528","text":"#LED\u30AB\u30C4\u30AB\u30C4\u9078\u624B\u6A29\n\u6F22\u5B57\u4E00\u6587\u5B57\u3076\u3093\u306E\u30B9\u30DA\u30FC\u30B9\u306B\u300C\u30CF\u30A6\u30B9\u30C6\u30F3\u30DC\u30B9\u300D\u3092\u53CE\u3081\u308B\u72C2\u6C17 http://t.co/vmrreDMziI","source":"Twitter Web Client","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82900665,"id_str":"82900665","name":"[90]\u9752\u8449\u53F0 \u82A6 (\u7B2C\u4E8C\u7C9F\u5C4B) \u5C4B","screen_name":"thsc782_407","location":"\u304B\u3093\u307E\u3057\u304D","description":"\u6E6F\u306E\u8857\u306E\u5143\u52C3\u9169\u59E6\u306A\u3093\u3061\u3083\u3089\u5927\u3000\u8D64\u3044\u72AC\u306E\u72AC\uFF08\u5916\u8CC7\u7CFB\uFF09\u3000\u80A5\u5F8C\u3067\u7DD1\u30CA\u30F3\u30D0\u30FC\u5C4B\u3055\u3093\u52E4\u3081\n\u304F\u3060\u3089\u306A\u3044\u3053\u3068\u3057\u304B\u3064\u3076\u3084\u304B\u306A\u3044\u3057\u3001\u3044\u3061\u3044\u3061\u8A33\u306E\u308F\u304B\u3089\u306A\u3044\u8A18\u53F7\u3092\u9023\u547C\u3059\u308B\u306E\u3067\u76F8\u5F53\u90AA\u9B54\u306B\u306A\u308B\u3068\u601D\u3044\u307E\u3059\u3002\u5BB3\u306F\u306A\u3044\u3068\u601D\u3044\u307E\u3059\u3002\u306E\u308A\u3082\u306E\u306E\u753B\u50CF\u3068\u304B\u305F\u304F\u3055\u3093\u4E0A\u3052\u307E\u3059\u3002\u3055\u307F\u3057\u3044\u3002\u8ECA\u8F2A\u306E\u3064\u3044\u305F\u3082\u306E\u306A\u3089\u3060\u3044\u305F\u3044\u597D\u304D\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":587,"friends_count":623,"listed_count":30,"created_at":"Fri Oct 16 15:13:32 +0000 2009","favourites_count":1405,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":60427,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/154137819/__813-1103.jpg","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/493760276676620289/32oLiTtT_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/82900665/1398865798","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":3291,"favorite_count":1526,"entities":{"hashtags":[{"text":"LED\u30AB\u30C4\u30AB\u30C4\u9078\u624B\u6A29","indices":[0,11]}],"symbols":[],"urls":[],"user_mentions":[],"media":[{"id":439430848194936800,"id_str":"439430848194936832","indices":[41,63],"media_url":"http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg","media_url_https":"https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg","url":"http://t.co/vmrreDMziI","display_url":"pic.twitter.com/vmrreDMziI","expanded_url":"http://twitter.com/thsc782_407/status/439430848190742528/photo/1","type":"photo","sizes":{"medium":{"w":600,"h":450,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":3291,"favorite_count":0,"entities":{"hashtags":[{"text":"LED\u30AB\u30C4\u30AB\u30C4\u9078\u624B\u6A29","indices":[17,28]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"thsc782_407","name":"[90]\u9752\u8449\u53F0 \u82A6 (\u7B2C\u4E8C\u7C9F\u5C4B) \u5C4B","id":82900665,"id_str":"82900665","indices":[3,15]}],"media":[{"id":439430848194936800,"id_str":"439430848194936832","indices":[58,80],"media_url":"http://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg","media_url_https":"https://pbs.twimg.com/media/BhksBzoCAAAJeDS.jpg","url":"http://t.co/vmrreDMziI","display_url":"pic.twitter.com/vmrreDMziI","expanded_url":"http://twitter.com/thsc782_407/status/439430848190742528/photo/1","type":"photo","sizes":{"medium":{"w":600,"h":450,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"}},"source_status_id":439430848190742500,"source_status_id_str":"439430848190742528"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:13 +0000 2014","id":505874918039228400,"id_str":"505874918039228416","text":"\u3010\u91D1\u4E00\u5730\u533A\u592A\u9F13\u53F0\u3011\u5DDD\u95A2\u3068\u5C0F\u5C71\u306E\u898B\u5206\u3051\u304C\u3064\u304B\u306A\u3044","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530194984,"id_str":"2530194984","name":"\u5DDD\u4E4B\u6C5F\u4E2D\u9AD8\u751F\u3042\u308B\u3042\u308B","screen_name":"kw_aru","location":"DM\u306B\u3066\u30CD\u30BF\u63D0\u4F9B\u5F85\u3063\u3066\u307E\u3059\u3088","description":"\u5DDD\u4E4B\u6C5F\u4E2D\u9AD8\u751F\u306E\u5DDD\u4E4B\u6C5F\u4E2D\u9AD8\u751F\u306B\u3088\u308B\u5DDD\u4E4B\u6C5F\u4E2D\u9AD8\u751F\u306E\u305F\u3081\u306E\u3042\u308B\u3042\u308B\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u3002\u30BF\u30A4\u30E0\u30EA\u30FC\u306A\u30CD\u30BF\u306F\u304A\u6C17\u306B\u5165\u308A\u306B\u3042\u308A\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":157,"listed_count":0,"created_at":"Wed May 28 15:01:43 +0000 2014","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4472,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/471668359314948097/XbIyXiZK_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2530194984/1401289473","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:13 +0000 2014","id":505874915338104800,"id_str":"505874915338104833","text":"\u304A\u306F\u3088\u3046\u3054\u3056\u3044\u307E\u3059\u3093\u266A SSDS\u306EDVD\u304C\u671D\u4E00\u3067\u5C4A\u3044\u305F\u301C\uFF08\u2267\u2207\u2266\uFF09","source":"TweetList!","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":428179337,"id_str":"428179337","name":"\u30B5\u30E9","screen_name":"sala_mgn","location":"\u6771\u4EAC\u90FD","description":"bot\u904A\u3073\u3068\u5B9F\u6CC1\u304C\u4E3B\u76EE\u7684\u306E\u8DA3\u5473\u30A2\u30AB\u30A6\u30F3\u30C8\u3002\u6210\u4EBA\u6E08\u2640\u3002\u6642\u3005TL\u304A\u9A12\u304C\u305B\u3057\u307E\u3059\u3002\u30EA\u30D5\u30A9\u7387\u4F4E\u3044\u3067\u3059\u304C\uFF26\uFF0F\uFF22\u3054\u81EA\u7531\u306B\u3002\u30B9\u30D1\u30E0\u306F\u30D6\u30ED\u30C3\u30AF\uFF01[HOT]K[\u30A2\u30CB\u30E1]\u30BF\u30A4\u30D0\u30CB/\uFF2B/\u8584\u685C\u9B3C/\u30C8\u30E9\u30A4\u30AC\u30F3/\u9032\u6483[\u5C0F\u8AAC]\u51B2\u65B9\u4E01/\u68EE\u535A\u55E3[\u6F2B\u753B]\u5185\u85E4\u6CF0\u5F18/\u9AD8\u6CB3\u3086\u3093[\u4ED6]\u58F0\u512A/\u6F14\u5287 \u203B@sano_bot1\u4E8C\u4EE3\u76EE\u7BA1\u7406\u4EBA","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":421,"listed_count":2,"created_at":"Sun Dec 04 12:51:18 +0000 2011","favourites_count":3257,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"verified":false,"statuses_count":25303,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/601682567/put73jtg48ytjylq00if.jpeg","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3350624721/755920942e4f512e6ba489df7eb1147e_normal.jpeg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:13 +0000 2014","id":505874914897690600,"id_str":"505874914897690624","text":"@ran_kirazuki \u305D\u306E\u3088\u3046\u306A\u304A\u8A00\u8449\u3092\u9802\u3051\u308B\u3068\u306F\u2026\u2026\uFF01\u3053\u306E\u96E8\u592A\u90CE\u3001\u8AA0\u5FC3\u8AA0\u610F\u3092\u6301\u3063\u3066\u59C9\u5FA1\u306E\u8DB3\u306E\u6307\u306E\u7B2C\u4E00\u95A2\u7BC0\u3092\u5D07\u3081\u5949\u308A\u3068\u3046\u3054\u3056\u3044\u307E\u3059","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":505874276692406300,"in_reply_to_status_id_str":"505874276692406272","in_reply_to_user_id":531544559,"in_reply_to_user_id_str":"531544559","in_reply_to_screen_name":"ran_kirazuki","user":{"id":2364828518,"id_str":"2364828518","name":"\u96E8","screen_name":"tear_dice","location":"\u5909\u614B/\u65E5\u5E38/\u5275\u4F5C/\u5BA4\u753A/\u305F\u307E\u306B\u7248\u6A29","description":"\u30A2\u30A4\u30B3\u30F3\u306F\u5144\u3055\u3093\u304B\u3089\uFF01","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":28,"listed_count":0,"created_at":"Fri Feb 28 00:28:40 +0000 2014","favourites_count":109,"utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"verified":false,"statuses_count":193,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/504434510675443713/lvW7ad5b.jpeg","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/505170142284640256/rnW4XeEJ_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2364828518/1409087198","profile_link_color":"0D31BF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"ran_kirazuki","name":"\u862D\u3074\u3088\u306E\u65E5\u5E38","id":531544559,"id_str":"531544559","indices":[0,13]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:13 +0000 2014","id":505874914591514600,"id_str":"505874914591514626","text":"RT @AFmbsk: @samao21718 \n\u547C\u3073\u65B9\u261E\u307E\u304A\u3061\u3083\u3093\n\u547C\u3070\u308C\u65B9\u261E\u3042\u30FC\u3061\u3083\u3093\n\u7B2C\u4E00\u5370\u8C61\u261E\u5E73\u91CE\u304B\u3089\uFF1F\uFF01\n\u4ECA\u306E\u5370\u8C61\u261E\u304A\u3068\u306A\u3063\u307D\u3044\uFF01\uFF01\nLINE\u4EA4\u63DB\u261E\u3082\u3063\u3066\u308B\u3093\\( \u02C6o\u02C6 )/\n\u30C8\u30D7\u753B\u306B\u3064\u3044\u3066\u261E\u697D\u3057\u305D\u3046\u3067\u3044\u30FC\u306A\uD83D\uDE33\n\u5BB6\u65CF\u306B\u3059\u308B\u306A\u3089\u261E\u304A\u306D\u3047\u3061\u3083\u3093\n\u6700\u5F8C\u306B\u4E00\u8A00\u261E\u5168\u7136\u4F1A\u3048\u306A\u3044\u2026","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2179759316,"id_str":"2179759316","name":"\u307E\u304A","screen_name":"samao21718","location":"\u57FC\u7389 UK\u7559\u5B66\u3057\u3066\u307E\u3057\u305F\u2708","description":"\uFF9F.\uFF0A97line \u304A\u3055\u3089\u306B\u8CA2\u3044\u3067\u308B\u7CFB\u5973\u5B50\uFF0A.\u309C DISH// \u272F \u4F50\u91CE\u60A0\u6597 \u272F \u8AAD\u30E2 \u272F WEGO \u272F \u5D50 I met @OTYOfficial in the London ;)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":121,"listed_count":0,"created_at":"Thu Nov 07 09:47:41 +0000 2013","favourites_count":321,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1777,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501535615351926784/c5AAh6Sz_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2179759316/1407640217","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 14:59:49 +0000 2014","id":505731620456771600,"id_str":"505731620456771584","text":"@samao21718 \n\u547C\u3073\u65B9\u261E\u307E\u304A\u3061\u3083\u3093\n\u547C\u3070\u308C\u65B9\u261E\u3042\u30FC\u3061\u3083\u3093\n\u7B2C\u4E00\u5370\u8C61\u261E\u5E73\u91CE\u304B\u3089\uFF1F\uFF01\n\u4ECA\u306E\u5370\u8C61\u261E\u304A\u3068\u306A\u3063\u307D\u3044\uFF01\uFF01\nLINE\u4EA4\u63DB\u261E\u3082\u3063\u3066\u308B\u3093\\( \u02C6o\u02C6 )/\n\u30C8\u30D7\u753B\u306B\u3064\u3044\u3066\u261E\u697D\u3057\u305D\u3046\u3067\u3044\u30FC\u306A\uD83D\uDE33\n\u5BB6\u65CF\u306B\u3059\u308B\u306A\u3089\u261E\u304A\u306D\u3047\u3061\u3083\u3093\n\u6700\u5F8C\u306B\u4E00\u8A00\u261E\u5168\u7136\u4F1A\u3048\u306A\u3044\u306D\u30FC\u4ECA\u5EA6\u4F1A\u3048\u305F\u3089\u3044\u3044\u306A\uFF01","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2179759316,"in_reply_to_user_id_str":"2179759316","in_reply_to_screen_name":"samao21718","user":{"id":1680668713,"id_str":"1680668713","name":"\u2605Shiiiii!\u2606","screen_name":"AFmbsk","location":"\u57FC\u7389","description":"2310*basketball#41*UVERworld*Pooh\u262ABell +.\uFF61*\u5F31\u3055\u3092\u77E5\u3063\u3066\u5F37\u304F\u306A\u308C*\uFF9F","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":429,"friends_count":434,"listed_count":0,"created_at":"Sun Aug 18 12:45:00 +0000 2013","favourites_count":2488,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6352,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/504643170886365185/JN_dlwUd_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1680668713/1408805886","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"samao21718","name":"\u307E\u304A","id":2179759316,"id_str":"2179759316","indices":[0,11]}]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"AFmbsk","name":"\u2605Shiiiii!\u2606","id":1680668713,"id_str":"1680668713","indices":[3,10]},{"screen_name":"samao21718","name":"\u307E\u304A","id":2179759316,"id_str":"2179759316","indices":[12,23]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:10 +0000 2014","id":505874905712189440,"id_str":"505874905712189440","text":"\u4E00\u3001\u5E38\u306B\u8EAB\u4E00\u3064\u7C21\u7D20\u306B\u3057\u3066\u3001\u7F8E\u98DF\u3092\u597D\u3093\u3067\u306F\u306A\u3089\u306A\u3044","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1330420010,"id_str":"1330420010","name":"\u7368\u884C\u9053bot","screen_name":"dokkodo_bot","location":"","description":"\u5BAE\u672C\u6B66\u8535\u306E\u81EA\u8A93\u66F8\u3001\u300C\u7368\u884C\u9053\u300D\u306B\u8A18\u3055\u308C\u305F\u4E8C\u5341\u4E00\u7B87\u6761\u3092\u30E9\u30F3\u30C0\u30E0\u306B\u3064\u3076\u3084\u304Fbot\u3067\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":5,"listed_count":1,"created_at":"Sat Apr 06 01:19:55 +0000 2013","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9639,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3482551671/d9e749f7658b523bdd50b7584ed4ba6a_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1330420010/1365212335","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:10 +0000 2014","id":505874903094939650,"id_str":"505874903094939648","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30E2\u30C6\u30E2\u30C6\u5927\u4F5C\u6226\u2605\u7537\u5B50\u7DE8","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2714526565,"id_str":"2714526565","name":"\u30E2\u30C6\u30E2\u30C6\u5927\u4F5C\u6226\u2605\u7537\u5B50\u7DE8","screen_name":"mote_danshi1","location":"","description":"\u3084\u3063\u3071\u308A\u30E2\u30C6\u30E2\u30C6\u7537\u5B50\u306B\u306A\u308A\u305F\u3044\uFF01\u81EA\u5206\u3092\u78E8\u304F\u30D2\u30F3\u30C8\u3092\u307F\u3064\u3051\u305F\u3044\uFF01\u5FDC\u63F4\u3057\u3066\u304F\u308C\u308B\u4EBA\u306F RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":664,"friends_count":1835,"listed_count":0,"created_at":"Thu Aug 07 12:59:59 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":597,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/497368689386086400/7hqdKMzG_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2714526565/1407416898","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:10 +0000 2014","id":505874902390276100,"id_str":"505874902390276096","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5FC3\u306B\u97FF\u304F\u30A2\u30C4\u3044\u540D\u8A00\u96C6","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2699261263,"id_str":"2699261263","name":"\u5FC3\u306B\u97FF\u304F\u30A2\u30C4\u3044\u540D\u8A00\u96C6","screen_name":"kokoro_meigen11","location":"","description":"\u4EBA\u751F\u306E\u683C\u8A00\u306F\u3001\u4EBA\u306E\u5FC3\u3084\u4EBA\u751F\u3092\u77AC\u6642\u306B\u306B\u52D5\u304B\u3057\u3066\u3057\u307E\u3046\u3053\u3068\u304C\u3042\u308B\u3002\r\n\u305D\u3093\u306A\u8A00\u8449\u306E\u91CD\u307F\u3092\u5473\u308F\u304A\u3046\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":183,"friends_count":1126,"listed_count":0,"created_at":"Fri Aug 01 22:00:00 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":749,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495328654126112768/1rKnNuWK_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2699261263/1406930543","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:10 +0000 2014","id":505874902247677950,"id_str":"505874902247677954","text":"RT @POTENZA_SUPERGT: \u3042\u308A\u304C\u3068\u3046\u3054\u3056\u3044\u307E\u3059\uFF01\u201C@8CBR8: @POTENZA_SUPERGT 13\u6642\u534A\u3054\u308D\u4E00\u96E8\u304D\u305D\u3046\u3067\u3059\u304C\u3001\u7121\u4E8B\u5168\u8ECA\u6C7A\u52DD\u30EC\u30FC\u30B9\u5B8C\u8D70\u51FA\u6765\u308B\u3053\u3068\u7948\u3063\u3066\u307E\u3059\uFF01 http://t.co/FzTyFnt9xH\u201D","source":"jigtwi","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1021030416,"id_str":"1021030416","name":"narur","screen_name":"narur2","location":"\u6674\u308C\u306E\u56FD\u306A\u306E\u306B\u4F55\u6545\u304B\u958B\u5E55\u6226\u3067\u306F\u96E8\u3084\u96EA\u3084\u51B0\u3084\u9730\u304C\u964D\u308B\u2728","description":"F1.GP2.Superformula.SuperGT.F3...\n\u30B9\u30FC\u30D1\u30FCGT\u304C\u5927\u597D\u304D\u2661\u8ECA\u304C\u597D\u304D\uFF01\u65B0\u5E79\u7DDA\u3082\u597D\u304D\uFF01\u98DB\u884C\u6A5F\u3082\u597D\u304D\uFF01\u3053\u3063\u305D\u308A\u5225\u30A2\u30AB\u3067\u3059(\u0E51\u00B4\u3142`\u0E51)\u2661*.+\u309C","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":257,"friends_count":237,"listed_count":2,"created_at":"Wed Dec 19 01:14:41 +0000 2012","favourites_count":547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":55417,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/462180217574789121/1Jf6m_2L.jpeg","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/444312241395863552/FKl40ebQ_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:05:11 +0000 2014","id":505868866686169100,"id_str":"505868866686169089","text":"\u3042\u308A\u304C\u3068\u3046\u3054\u3056\u3044\u307E\u3059\uFF01\u201C@8CBR8: @POTENZA_SUPERGT 13\u6642\u534A\u3054\u308D\u4E00\u96E8\u304D\u305D\u3046\u3067\u3059\u304C\u3001\u7121\u4E8B\u5168\u8ECA\u6C7A\u52DD\u30EC\u30FC\u30B9\u5B8C\u8D70\u51FA\u6765\u308B\u3053\u3068\u7948\u3063\u3066\u307E\u3059\uFF01 http://t.co/FzTyFnt9xH\u201D","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":505868690588303360,"in_reply_to_status_id_str":"505868690588303360","in_reply_to_user_id":333344408,"in_reply_to_user_id_str":"333344408","in_reply_to_screen_name":"8CBR8","user":{"id":359324738,"id_str":"359324738","name":"POTENZA_SUPERGT","screen_name":"POTENZA_SUPERGT","location":"","description":"\u30D6\u30EA\u30C2\u30B9\u30C8\u30F3\u306E\u30B9\u30DD\u30FC\u30C4\u30BF\u30A4\u30E4\u300CPOTENZA\u300D\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u3002\u30EC\u30FC\u30B9\u3084\u30BF\u30A4\u30E4\u306E\u4E8B\u306A\u3069\u3092\u3064\u3076\u3084\u304D\u307E\u3059\u3002\u4ECA\u30B7\u30FC\u30BA\u30F3\u3082\u300C\u30C1\u30E3\u30F3\u30D4\u30AA\u30F3\u30BF\u30A4\u30E4\u306E\u79F0\u53F7\u306F\u8B72\u3089\u306A\u3044\u300D\u3092\u30AD\u30E3\u30C3\u30C1\u30B3\u30D4\u30FC\u306B\u3001\u30BF\u30A4\u30E4\u4F9B\u7D66\u30C1\u30FC\u30E0\u3092\u5168\u529B\u3067\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u304D\u307E\u3059\u306E\u3067\u3001\u5FDC\u63F4\u3088\u308D\u3057\u304F\u304A\u9858\u3044\u3057\u307E\u3059\uFF01\u306A\u304A\u3001\u8FD4\u4FE1\u304C\u3067\u304D\u306A\u3044\u5834\u5408\u3082\u3042\u308A\u307E\u3059\u306E\u3067\u3001\u3054\u4E86\u627F\u3088\u308D\u3057\u304F\u304A\u9858\u3044\u81F4\u3057\u307E\u3059\u3002","url":"http://t.co/LruVPk5x4K","entities":{"url":{"urls":[{"url":"http://t.co/LruVPk5x4K","expanded_url":"http://www.bridgestone.co.jp/sc/potenza/","display_url":"bridgestone.co.jp/sc/potenza/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":9612,"friends_count":308,"listed_count":373,"created_at":"Sun Aug 21 11:33:38 +0000 2011","favourites_count":26,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"verified":false,"statuses_count":10032,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http://abs.twimg.com/images/themes/theme14/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme14/bg.gif","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1507885396/TW_image_normal.jpg","profile_banner_url":"https://pbs.twimg.com/profile_banners/359324738/1402546267","profile_link_color":"FF2424","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"8CBR8","name":"CBR Rider #17 KEIHIN","id":333344408,"id_str":"333344408","indices":[12,18]},{"screen_name":"POTENZA_SUPERGT","name":"POTENZA_SUPERGT","id":359324738,"id_str":"359324738","indices":[20,36]}],"media":[{"id":505868690252779500,"id_str":"505868690252779521","indices":[75,97],"media_url":"http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg","media_url_https":"https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg","url":"http://t.co/FzTyFnt9xH","display_url":"pic.twitter.com/FzTyFnt9xH","expanded_url":"http://twitter.com/8CBR8/status/505868690588303360/photo/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"}},"source_status_id":505868690588303360,"source_status_id_str":"505868690588303360"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"POTENZA_SUPERGT","name":"POTENZA_SUPERGT","id":359324738,"id_str":"359324738","indices":[3,19]},{"screen_name":"8CBR8","name":"CBR Rider #17 KEIHIN","id":333344408,"id_str":"333344408","indices":[33,39]},{"screen_name":"POTENZA_SUPERGT","name":"POTENZA_SUPERGT","id":359324738,"id_str":"359324738","indices":[41,57]}],"media":[{"id":505868690252779500,"id_str":"505868690252779521","indices":[96,118],"media_url":"http://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg","media_url_https":"https://pbs.twimg.com/media/BwU05MGCUAEY6Wu.jpg","url":"http://t.co/FzTyFnt9xH","display_url":"pic.twitter.com/FzTyFnt9xH","expanded_url":"http://twitter.com/8CBR8/status/505868690588303360/photo/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"}},"source_status_id":505868690588303360,"source_status_id_str":"505868690588303360"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:09 +0000 2014","id":505874901689851900,"id_str":"505874901689851904","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u3053\u3053\u3060\u3051\u306E\u672C\u97F3\u2605\u7537\u5B50\u7DE8","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762136439,"id_str":"2762136439","name":"\u3053\u3053\u3060\u3051\u306E\u672C\u97F3\u2605\u7537\u5B50\u7DE8","screen_name":"danshi_honne1","location":"","description":"\u601D\u3063\u3066\u308B\u3051\u3069\u8A00\u3048\u306A\u3044\uFF01\u3067\u3082\u30DB\u30F3\u30C8\u306F\u8A00\u3044\u305F\u3044\u3053\u3068\u3001\u5B9F\u306F\u3044\u3063\u3071\u3044\u3042\u308B\u3093\u3067\u3059\uFF01 \r\n\u305D\u3093\u306A\u7537\u5B50\u306E\u672C\u97F3\u3092\u3001\u3064\u3076\u3084\u304D\u307E\u3059\u3002 \r\n\u305D\u306E\u6C17\u6301\u308F\u304B\u308B\u3063\u3066\u4EBA\u306F RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":101,"friends_count":985,"listed_count":0,"created_at":"Sun Aug 24 11:11:30 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":209,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/503500282840354816/CEv8UMay_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2762136439/1408878822","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:09 +0000 2014","id":505874900939046900,"id_str":"505874900939046912","text":"RT @UARROW_Y: \u3088\u3046\u304B\u3044\u4F53\u64CD\u7B2C\u4E00\u3092\u8E0A\u308B\u56FD\u898B\u82F1 http://t.co/SXoYWH98as","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2454426158,"id_str":"2454426158","name":"\u3074\u304B\u308A\u3093","screen_name":"gncnToktTtksg","location":"","description":"\u9280\u9B42/\u9ED2\u30D0\u30B9/\u9032\u6483/\u30CF\u30A4\u30AD\u30E5\u30FC/BLEACH/\u3046\u305F\u30D7\u30EA/\u9234\u6728\u9054\u592E\u3055\u3093/\u795E\u8C37\u6D69\u53F2\u3055\u3093 \u6C17\u8EFD\u306B\u30D5\u30A9\u30ED\u30FC\u3057\u3066\u304F\u3060\u3055\u3044\uFF08\uFF3E\u2207\uFF3E\uFF09\u2728","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1274,"friends_count":1320,"listed_count":17,"created_at":"Sun Apr 20 07:48:53 +0000 2014","favourites_count":2314,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5868,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/457788684146716672/KCOy0S75_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2454426158/1409371302","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:45 +0000 2014","id":505871779949051900,"id_str":"505871779949051904","text":"\u3088\u3046\u304B\u3044\u4F53\u64CD\u7B2C\u4E00\u3092\u8E0A\u308B\u56FD\u898B\u82F1 http://t.co/SXoYWH98as","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261662588,"id_str":"1261662588","name":"\u3086\u3046\u77E2","screen_name":"UARROW_Y","location":"\u3064\u304F\u308A\u51FA\u305D\u3046\u56FD\u5F71\u306E\u6CE2 \u5E83\u3052\u3088\u3046\u56FD\u5F71\u306E\u8F2A","description":"HQ!! \u6210\u4EBA\u6E08\u8150\u5973\u5B50\u3002\u65E5\u5E38\u30C4\u30A4\u30FC\u30C8\u591A\u3044\u3067\u3059\u3002\u8D64\u8466\u4EAC\u6CBB\u5922\u8C5A\u30AF\u30BD\u30C4\u30A4\u542B\u307F\u307E\u3059\u6CE8\u610F\u3002\u30D5\u30A9\u30ED\u30FC\u3092\u304A\u8003\u3048\u306E\u969B\u306F\u30D7\u30ED\u30D5\u3054\u4E00\u8AAD\u304A\u9858\u3044\u81F4\u3057\u307E\u3059\u3002FRB\u304A\u6C17\u8EFD\u306B","url":"http://t.co/LFX2XOzb0l","entities":{"url":{"urls":[{"url":"http://t.co/LFX2XOzb0l","expanded_url":"http://twpf.jp/UARROW_Y","display_url":"twpf.jp/UARROW_Y","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":124,"listed_count":12,"created_at":"Tue Mar 12 10:42:17 +0000 2013","favourites_count":6762,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":55946,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/1261662588/1408618604","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":29,"favorite_count":54,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/SXoYWH98as","expanded_url":"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1","display_url":"pic.twitter.com/SXoYWH98as","indices":[15,37]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":29,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/SXoYWH98as","expanded_url":"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1","display_url":"pic.twitter.com/SXoYWH98as","indices":[29,51]}],"user_mentions":[{"screen_name":"UARROW_Y","name":"\u3086\u3046\u77E2","id":1261662588,"id_str":"1261662588","indices":[3,12]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:09 +0000 2014","id":505874900561580000,"id_str":"505874900561580032","text":"\u4ECA\u65E5\u306F\u4E00\u9AD8\u3068\u4E09\u685C\uFF08\u30FB\u03B8\u30FB\uFF09\n\u5149\u68A8\u3061\u3083\u3093\u306B\u4F1A\u3048\u306A\u3044\u304B\u306A\u301C","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1366375976,"id_str":"1366375976","name":"\u3086\u3044\u306E","screen_name":"yuino1006","location":"","description":"\u3055\u3093\u304A\u3046 \u7537\u30D0\u30B9\u30DE\u30CD2\u306D\u3093\uFF08\uFF3E\u03C9\uFF3E\uFF09","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":260,"listed_count":0,"created_at":"Sat Apr 20 07:02:08 +0000 2013","favourites_count":1384,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":5202,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/505354401448349696/nxVFEQQ4_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1366375976/1399989379","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:09 +0000 2014","id":505874899324248060,"id_str":"505874899324248064","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5171\u611F\u2605\u7D76\u5BFE\u3042\u308B\u3042\u308Bww","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2704420069,"id_str":"2704420069","name":"\u5171\u611F\u2605\u7D76\u5BFE\u3042\u308B\u3042\u308Bww","screen_name":"kyoukan_aru","location":"","description":"\u307F\u3093\u306A\u306B\u3082\u308F\u304B\u3063\u3066\u3082\u3089\u3048\u308B\u3001\u3042\u308B\u3042\u308B\u3092\u898B\u3064\u3051\u305F\u3044\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":857,"friends_count":1873,"listed_count":0,"created_at":"Sun Aug 03 15:50:40 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":682,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495960812670836737/1LqkoyvU_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2704420069/1407081298","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:09 +0000 2014","id":505874898493796350,"id_str":"505874898493796352","text":"RT @assam_house: \u6CC9\u7530\u65B0\u6F5F\u770C\u77E5\u4E8B\u306F\u3001\u6771\u96FB\u306E\u7533\u8ACB\u66F8\u63D0\u51FA\u3092\u5BB9\u8A8D\u3055\u305B\u3089\u308C\u305F\u3060\u3051\u3067\u3001\u518D\u7A3C\u50CD\u306B\u5FC5\u8981\u306A\u300C\u540C\u610F\u300D\u306F\u307E\u3060\u4E0E\u3048\u3066\u3044\u307E\u305B\u3093\u3002\u4ECA\u307E\u3067\u67CF\u5D0E\u5208\u7FBD\u306E\u518D\u7A3C\u50CD\u3092\u6291\u3048\u7D9A\u3051\u3066\u304D\u305F\u77E5\u4E8B\u306B\u3001\u3082\u3046\u4E00\u8E0F\u3093\u5F35\u308A\u3092\u304A\u9858\u3044\u3059\u308B\u610F\u898B\u3092\u9001\u3063\u3066\u4E0B\u3055\u3044\u3002\u5168\u56FD\u306E\u7686\u69D8\u3001\u304A\u9858\u3044\u3057\u307E\u3059\uFF01\nhttp://t.co\u2026","source":"jigtwi for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":960765968,"id_str":"960765968","name":"\u3055\u3061","screen_name":"sachitaka_dears","location":"\u5BAE\u57CE\u770C","description":"\u52D5\u7269\u95A2\u9023\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u3002\u30B5\u30D6\u30A2\u30AB\u30A6\u30F3\u30C8@sachi_dears (\u3055\u3061 \u2777) \u3082\u3042\u308A\u307E\u3059\u3002\u300E\u5FC3\u3042\u308B\u3082\u306E\u306F\u7686\u3001\u611B\u3057\u611B\u3055\u308C\u308B\u305F\u3081\u306B\u751F\u307E\u308C\u3066\u304D\u305F\u3002\u305D\u3057\u3066\u611B\u60C5\u3092\u611F\u3058\u306A\u304C\u3089\u751F\u3092\u5168\u3046\u3059\u308B\u3079\u304D\u306A\u3093\u3060\u300F","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3212,"friends_count":3528,"listed_count":91,"created_at":"Tue Nov 20 16:30:53 +0000 2012","favourites_count":3180,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":146935,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/3659653229/5b698df67f5d105400e9077f5ea50e91_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Tue Aug 19 11:00:53 +0000 2014","id":501685228427964400,"id_str":"501685228427964417","text":"\u6CC9\u7530\u65B0\u6F5F\u770C\u77E5\u4E8B\u306F\u3001\u6771\u96FB\u306E\u7533\u8ACB\u66F8\u63D0\u51FA\u3092\u5BB9\u8A8D\u3055\u305B\u3089\u308C\u305F\u3060\u3051\u3067\u3001\u518D\u7A3C\u50CD\u306B\u5FC5\u8981\u306A\u300C\u540C\u610F\u300D\u306F\u307E\u3060\u4E0E\u3048\u3066\u3044\u307E\u305B\u3093\u3002\u4ECA\u307E\u3067\u67CF\u5D0E\u5208\u7FBD\u306E\u518D\u7A3C\u50CD\u3092\u6291\u3048\u7D9A\u3051\u3066\u304D\u305F\u77E5\u4E8B\u306B\u3001\u3082\u3046\u4E00\u8E0F\u3093\u5F35\u308A\u3092\u304A\u9858\u3044\u3059\u308B\u610F\u898B\u3092\u9001\u3063\u3066\u4E0B\u3055\u3044\u3002\u5168\u56FD\u306E\u7686\u69D8\u3001\u304A\u9858\u3044\u3057\u307E\u3059\uFF01\nhttp://t.co/9oH5cgpy1q","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1104771276,"id_str":"1104771276","name":"\u30A2\u30C3\u30B5\u30E0\u5C71\u4E2D\uFF08\u6BBA\u51E6\u5206\u30BC\u30ED\u306B\u4E00\u7968\uFF09","screen_name":"assam_house","location":"\u65B0\u6F5F\u770C\u67CF\u5D0E\u5E02","description":"\u30A2\u30C3\u30B5\u30E0\u5C71\u4E2D\u306E\u8DA3\u5473\u7528\u30A2\u30AB\u3002\u5F53\u5206\u306E\u9593\u3001\u9078\u6319\u5553\u767A\u7528\u3068\u3057\u3066\u3082\u4F7F\u3063\u3066\u3044\u304D\u307E\u3059\u3002\u3053\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u304C\u30A2\u30C3\u30B5\u30E0\u5C71\u4E2D\u672C\u4EBA\u306E\u3082\u306E\u3067\u3042\u308B\u4E8B\u306F @assam_yamanaka \u306E\u30D7\u30ED\u30D5\u3067\u3054\u78BA\u8A8D\u4E0B\u3055\u3044\u3002\r\n\u516C\u9078\u6CD5\u306B\u4FC2\u308B\u8868\u793A\r\n\u5EB6\u6C11\u65B0\u515A #\u8131\u539F\u767A http://t.co/96UqoCo0oU\r\nonestep.revival@gmail.com","url":"http://t.co/AEOCATaNZc","entities":{"url":{"urls":[{"url":"http://t.co/AEOCATaNZc","expanded_url":"http://www.assam-house.net/","display_url":"assam-house.net","indices":[0,22]}]},"description":{"urls":[{"url":"http://t.co/96UqoCo0oU","expanded_url":"http://blog.assam-house.net/datsu-genpatsu/index.html","display_url":"blog.assam-house.net/datsu-genpatsu\u2026","indices":[110,132]}]}},"protected":false,"followers_count":2977,"friends_count":3127,"listed_count":64,"created_at":"Sat Jan 19 22:10:13 +0000 2013","favourites_count":343,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":18021,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000067217575/e0a85b440429ff50430a41200327dcb8_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/1104771276/1408948288","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/9oH5cgpy1q","expanded_url":"http://www.pref.niigata.lg.jp/kouhou/info.html","display_url":"pref.niigata.lg.jp/kouhou/info.ht\u2026","indices":[111,133]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/9oH5cgpy1q","expanded_url":"http://www.pref.niigata.lg.jp/kouhou/info.html","display_url":"pref.niigata.lg.jp/kouhou/info.ht\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"assam_house","name":"\u30A2\u30C3\u30B5\u30E0\u5C71\u4E2D\uFF08\u6BBA\u51E6\u5206\u30BC\u30ED\u306B\u4E00\u7968\uFF09","id":1104771276,"id_str":"1104771276","indices":[3,15]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:09 +0000 2014","id":505874898468630500,"id_str":"505874898468630528","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u304A\u3057\u3083\u308C\u2605\u30DA\u30A2\u30EB\u30C3\u30AF","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2708607692,"id_str":"2708607692","name":"\u304A\u3057\u3083\u308C\u2605\u30DA\u30A2\u30EB\u30C3\u30AF","screen_name":"osyare_pea","location":"","description":"\u30E9\u30D6\u30E9\u30D6\u5EA6\u304C\u30A2\u30C3\u30D7\u3059\u308B\u3001\u7D20\u6575\u306A\u30DA\u30A2\u30EB\u30C3\u30AF\u3092\u898B\u3064\u3051\u3066\u7D39\u4ECB\u3057\u307E\u3059\u266A \u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":129,"friends_count":1934,"listed_count":0,"created_at":"Tue Aug 05 07:09:31 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":641,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496554257676382208/Zgg0bmNu_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2708607692/1407222776","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:08 +0000 2014","id":505874897633951740,"id_str":"505874897633951745","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"LOVE \u2665 \u30E9\u30D6\u30E9\u30A4\u30D6","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745389137,"id_str":"2745389137","name":"LOVE \u2665 \u30E9\u30D6\u30E9\u30A4\u30D6","screen_name":"love_live55","location":"","description":"\u3068\u306B\u304B\u304F\u300C\u30E9\u30D6\u30E9\u30A4\u30D6\u304C\u597D\u304D\u3067\uFF5E\u3059\u2665\u300D \r\n\u30E9\u30D6\u30E9\u30A4\u30D6\u30D5\u30A1\u30F3\u306B\u306F\u3001\u305F\u307E\u3089\u306A\u3044\u5185\u5BB9\u3070\u304B\u308A\u96C6\u3081\u3066\u3044\u307E\u3059\u266A \r\n\u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":251,"friends_count":969,"listed_count":0,"created_at":"Tue Aug 19 15:45:40 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":348,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501757482448850944/x2uPpqRx_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745389137/1408463342","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:08 +0000 2014","id":505874896795086850,"id_str":"505874896795086848","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u604B\u3059\u308B\u2661\u30C9\u30EC\u30B9\u30B7\u30EA\u30FC\u30BA","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2726346560,"id_str":"2726346560","name":"\u604B\u3059\u308B\u2661\u30C9\u30EC\u30B9\u30B7\u30EA\u30FC\u30BA","screen_name":"koisurudoress","location":"","description":"\u3069\u308C\u3082\u3053\u308C\u3082\u3001\u898B\u3066\u3044\u308B\u3060\u3051\u3067\u6B32\u3057\u304F\u306A\u3063\u3061\u3083\u3046\u266A \r\n\u7279\u5225\u306A\u65E5\u306B\u7740\u308B\u7D20\u6575\u306A\u30C9\u30EC\u30B9\u3092\u898B\u3064\u3051\u305F\u3044\u3067\u3059\u3002 \r\n\u7740\u3066\u307F\u305F\u3044\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":1900,"listed_count":0,"created_at":"Tue Aug 12 14:10:35 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":471,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/499199619465621504/fg7sVusT_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2726346560/1407853688","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:08 +0000 2014","id":505874895964626940,"id_str":"505874895964626944","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u80F8\u30AD\u30E5\u30F3\u2665\u52D5\u7269\u56F3\u9451","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2759192574,"id_str":"2759192574","name":"\u80F8\u30AD\u30E5\u30F3\u2665\u52D5\u7269\u56F3\u9451","screen_name":"doubutuzukan","location":"","description":"\u3075\u3068\u3057\u305F\u8868\u60C5\u306B\u601D\u308F\u305A\u30AD\u30E5\u30F3\u3068\u3057\u3066\u3057\u307E\u3046\u266A \r\n\u305D\u3093\u306A\u611B\u3057\u306E\u52D5\u7269\u305F\u3061\u306E\u5199\u771F\u3092\u898B\u3064\u3051\u307E\u3059\u3002 \r\n\u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u3092\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":80,"friends_count":959,"listed_count":1,"created_at":"Sat Aug 23 15:47:36 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":219,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503211559552688128/Ej_bixna_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2759192574/1408809101","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:08 +0000 2014","id":505874895079608300,"id_str":"505874895079608320","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30C7\u30A3\u30BA\u30CB\u30FC\u2605\u30D1\u30E9\u30C0\u30A4\u30B9","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719228561,"id_str":"2719228561","name":"\u30C7\u30A3\u30BA\u30CB\u30FC\u2605\u30D1\u30E9\u30C0\u30A4\u30B9","screen_name":"disney_para","location":"","description":"\u30C7\u30A3\u30BA\u30CB\u30FC\u306E\u304B\u308F\u3044\u3044\u753B\u50CF\u3001\u30CB\u30E5\u30FC\u30B9\u60C5\u5831\u3001\u3042\u308B\u3042\u308B\u306A\u3069\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A\r\n\u30C7\u30A3\u30BA\u30CB\u30FC\u30D5\u30A1\u30F3\u306F RT & \u30D5\u30A9\u30ED\u30FC\u3082\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":331,"friends_count":1867,"listed_count":0,"created_at":"Sat Aug 09 12:01:32 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":540,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/498076922488696832/Ti2AEuOT_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2719228561/1407585841","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:08 +0000 2014","id":505874894135898100,"id_str":"505874894135898112","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u751F\u3005\u3057\u3044\u98A8\u523A\u753B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2714772727,"id_str":"2714772727","name":"\u751F\u3005\u3057\u3044\u98A8\u523A\u753B","screen_name":"nama_fuushi","location":"","description":"\u6DF1\u3044\u610F\u5473\u304C\u8FBC\u3081\u3089\u308C\u305F\u300C\u751F\u3005\u3057\u3044\u98A8\u523A\u753B\u300D\u3092\u898B\u3064\u3051\u307E\u3059\u3002\r\n\u8003\u3048\u3055\u305B\u3089\u308C\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":298,"friends_count":1902,"listed_count":1,"created_at":"Thu Aug 07 15:04:45 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":595,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/497398363352875011/tS-5FPJB_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2714772727/1407424091","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874893347377150,"id_str":"505874893347377152","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5D50\u2605\u5927\u597D\u304D\u3063\u5A18","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2721682579,"id_str":"2721682579","name":"\u5D50\u2605\u5927\u597D\u304D\u3063\u5A18","screen_name":"arashi_suki1","location":"","description":"\u306A\u3093\u3060\u304B\u3093\u3060\u8A00\u3063\u3066\u3001\u3084\u3063\u3071\u308A\u5D50\u304C\u597D\u304D\u306A\u3093\u3067\u3059\u266A\r\n\u3044\u308D\u3044\u308D\u96C6\u3081\u305F\u3044\u306E\u3067\u3001\u5D50\u597D\u304D\u306A\u4EBA\u306B\u898B\u3066\u307B\u3057\u3044\u3067\u3059\u3002\r\n\u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":794,"friends_count":1913,"listed_count":2,"created_at":"Sun Aug 10 13:43:56 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":504,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498465364733198336/RO6wupdc_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2721682579/1407678436","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874893154426900,"id_str":"505874893154426881","text":"RT @Takashi_Shiina: \u30C6\u30EC\u30D3\u3067\u300C\u6210\u4EBA\u7537\u6027\u306E\u30AB\u30ED\u30EA\u30FC\u6442\u53D6\u91CF\u306F1900kcal\u300D\u3068\u304B\u8A00\u3063\u3066\u3066\u3001\u305D\u308C\u306F\u3044\u307E\u307E\u3055\u306B\u79C1\u304C\u30C0\u30A4\u30A8\u30C3\u30C8\u306E\u305F\u3081\u306B\u5FC5\u6B7B\u3067\u30AD\u30FC\u30D7\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308B\u91CF\u3067\u3001\u300C\u305D\u308C\u304C\u666E\u901A\u306A\u3089\u4EBA\u306F\u3044\u3064\u5929\u4E00\u3084\u30B3\u30B3\u30A4\u30C1\u306B\u884C\u3063\u3066\u5927\u76DB\u308A\u3092\u98DF\u3048\u3070\u3044\u3044\u3093\u3060\uFF01\u300D\u3068\u601D\u3063\u305F\u3002","source":"twicca","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353516742,"id_str":"353516742","name":"\u304A\u3057\u3093\u3053\u30FC\uFF20\u571F\u66DC\u897F\u304841a","screen_name":"oshin_koko","location":"\u3053\u305F\u3064","description":"ROM\u3063\u3066\u697D\u3057\u3093\u3067\u3044\u308B\u90E8\u5206\u3082\u3042\u308A\u7121\u8A00\u30D5\u30A9\u30ED\u30FC\u591A\u3081\u3067\u3059\u3059\u307F\u307E\u305B\u3093\u2026\u3002\u30C4\u30A4\u30FC\u30C8\u6570\u591A\u3081\u30FB\u3042\u3089\u3076\u308A\u591A\u3081\u306A\u306E\u3067\u30D5\u30A9\u30ED\u30FC\u975E\u63A8\u5968\u3067\u3059\u3002\u6700\u8FD1\u306F\u65E9\u5175\u30FB\u5175\u90E8\u53D7\u3051\u4E2D\u5FC3\u3067\u3059\u304CBLNL\u306A\u3093\u3067\u3082\u597D\u304D\u3067\u3059\u3002\u5730\u96F7\u5C11\u306A\u3044\u305F\u3081\u96D1\u591A\u306B\u545F\u304D\u307E\u3059\u3002\u8150\u30FBR18\u30FB\u30CD\u30BF\u30D0\u30EC\u6709\u308B\u306E\u3067\u3054\u6CE8\u610F\u3002\u4ED6\u597D\u304D\u306A\u30B8\u30E3\u30F3\u30EB\u306F\u30D7\u30ED\u30D5\u53C2\u7167\u9858\u3044\u307E\u3059\u3002\u3000\u4E3B\u50AC\u2192@chounou_antholo","url":"http://t.co/mM1dG54NiO","entities":{"url":{"urls":[{"url":"http://t.co/mM1dG54NiO","expanded_url":"http://twpf.jp/oshin_koko","display_url":"twpf.jp/oshin_koko","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":479,"friends_count":510,"listed_count":43,"created_at":"Fri Aug 12 05:53:13 +0000 2011","favourites_count":3059,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":104086,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/799871497/01583a031f83a45eba881c8acde729ee.jpeg","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/484347196523835393/iHaYxm-2_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/353516742/1369039651","profile_link_color":"FF96B0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 09:58:30 +0000 2014","id":505655792733650940,"id_str":"505655792733650944","text":"\u30C6\u30EC\u30D3\u3067\u300C\u6210\u4EBA\u7537\u6027\u306E\u30AB\u30ED\u30EA\u30FC\u6442\u53D6\u91CF\u306F1900kcal\u300D\u3068\u304B\u8A00\u3063\u3066\u3066\u3001\u305D\u308C\u306F\u3044\u307E\u307E\u3055\u306B\u79C1\u304C\u30C0\u30A4\u30A8\u30C3\u30C8\u306E\u305F\u3081\u306B\u5FC5\u6B7B\u3067\u30AD\u30FC\u30D7\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308B\u91CF\u3067\u3001\u300C\u305D\u308C\u304C\u666E\u901A\u306A\u3089\u4EBA\u306F\u3044\u3064\u5929\u4E00\u3084\u30B3\u30B3\u30A4\u30C1\u306B\u884C\u3063\u3066\u5927\u76DB\u308A\u3092\u98DF\u3048\u3070\u3044\u3044\u3093\u3060\uFF01\u300D\u3068\u601D\u3063\u305F\u3002","source":"Janetter","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126573583,"id_str":"126573583","name":"\u690E\u540D\u9AD8\u5FD7","screen_name":"Takashi_Shiina","location":"BABEL\uFF08\u8D85\u80FD\u529B\u652F\u63F4\u7814\u7A76\u5C40\uFF09","description":"\u6F2B\u753B\u5BB6\u3002\u9031\u520A\u5C11\u5E74\u30B5\u30F3\u30C7\u30FC\u3067\u300E\u7D76\u5BFE\u53EF\u6190\u30C1\u30EB\u30C9\u30EC\u30F3\u300F\u9023\u8F09\u4E2D\u3002TV\u30A2\u30CB\u30E1\u300ETHE UNLIMITED \u5175\u90E8\u4EAC\u4ECB\u300F\u516C\u5F0F\u30B5\u30A4\u30C8\uFF1Ehttp://t.co/jVqBoBEc","url":"http://t.co/K3Oi83wM3w","entities":{"url":{"urls":[{"url":"http://t.co/K3Oi83wM3w","expanded_url":"http://cnanews.asablo.jp/blog/","display_url":"cnanews.asablo.jp/blog/","indices":[0,22]}]},"description":{"urls":[{"url":"http://t.co/jVqBoBEc","expanded_url":"http://unlimited-zc.jp/index.html","display_url":"unlimited-zc.jp/index.html","indices":[59,79]}]}},"protected":false,"followers_count":110756,"friends_count":61,"listed_count":8159,"created_at":"Fri Mar 26 08:54:51 +0000 2010","favourites_count":25,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":27364,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http://abs.twimg.com/images/themes/theme3/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme3/bg.gif","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/504597210772688896/Uvt4jgf5_normal.png","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":221,"favorite_count":109,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":221,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Takashi_Shiina","name":"\u690E\u540D\u9AD8\u5FD7","id":126573583,"id_str":"126573583","indices":[3,18]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874892567244800,"id_str":"505874892567244801","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u4E0B\u30CD\u30BF\uFF06\u7B11\u5909\u614B\u96D1\u5B66","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762581922,"id_str":"2762581922","name":"\u4E0B\u30CD\u30BF\uFF06\u7B11\u5909\u614B\u96D1\u5B66","screen_name":"shimo_hentai","location":"","description":"\u666E\u901A\u306E\u4EBA\u306B\u306F\u601D\u3044\u3064\u304B\u306A\u3044\u3001\u3061\u3087\u3063\u3068\u5909\u614B\u30C1\u30C3\u30AF\u306A \u7B11\u3048\u308B\u4E0B\u30CD\u30BF\u96D1\u5B66\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u3002 \r\n\u304A\u3082\u3057\u308D\u304B\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":37,"friends_count":990,"listed_count":0,"created_at":"Sun Aug 24 14:13:20 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":212,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503545991950114816/K9yQbh1Q_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2762581922/1408889893","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874891778703360,"id_str":"505874891778703360","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u8D85\u7C21\u5358\u2605\u521D\u5FC3\u8005\u82F1\u8A9E","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744544025,"id_str":"2744544025","name":"\u8D85\u7C21\u5358\u2605\u521D\u5FC3\u8005\u82F1\u8A9E","screen_name":"kantaneigo1","location":"","description":"\u3059\u3050\u306B\u4F7F\u3048\u308B\u30D5\u30EC\u30FC\u30BA\u3084\u7C21\u5358\u306A\u4F1A\u8A71\u3092\u7D39\u4ECB\u3057\u307E\u3059\u3002 \r\n\u5C11\u3057\u3065\u3064\u7DF4\u7FD2\u3057\u3066\u3001\u3069\u3093\u3069\u3093\u4F7F\u3063\u3066\u307F\u3088\u3046\u2606 \r\n\u4F7F\u3063\u3066\u307F\u305F\u3044\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":970,"listed_count":1,"created_at":"Tue Aug 19 10:11:48 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":345,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501676136321929216/4MLpyHe3_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744544025/1408443928","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874891032121340,"id_str":"505874891032121344","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u73FE\u4EE3\u306E\u30CF\u30F3\u30C9\u30B5\u30A4\u30F3","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762816814,"id_str":"2762816814","name":"\u73FE\u4EE3\u306E\u30CF\u30F3\u30C9\u30B5\u30A4\u30F3","screen_name":"ima_handsign","location":"","description":"\u30A4\u30B6\u3068\u3044\u3046\u6642\u3084\u3001\u56F0\u3063\u305F\u6642\u306B\u3001\u5FC5\u305A\u5F79\u306B\u7ACB\u3064\u30CF\u30F3\u30C9\u30B5\u30A4\u30F3\u306E\u30AA\u30F3\u30D1\u30EC\u30FC\u30C9\u3067\u3059\u266A \r\n\u4F7F\u3063\u3066\u307F\u305F\u304F\u306A\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":95,"friends_count":996,"listed_count":0,"created_at":"Sun Aug 24 15:33:58 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/503566188253687809/7wtdp1AC_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2762816814/1408894540","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874890247782400,"id_str":"505874890247782401","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u4ECA\u65E5\u304B\u3089\u30A2\u30CA\u30BF\u3082\u30A4\u30A4\u5973\u266A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2714167411,"id_str":"2714167411","name":"\u4ECA\u65E5\u304B\u3089\u30A2\u30CA\u30BF\u3082\u30A4\u30A4\u5973\u266A","screen_name":"anata_iionna","location":"","description":"\u307F\u3093\u306A\u304C\u77E5\u308A\u305F\u3044 \u30A4\u30A4\u5973\u306E\u79D8\u5BC6\u3092\u898B\u3064\u3051\u307E\u3059\u266A \u3044\u3044\u306A\uFF5E\u3068\u601D\u3063\u3066\u304F\u308C\u305F\u4EBA\u306F RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":1425,"listed_count":0,"created_at":"Thu Aug 07 09:27:59 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":609,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/497314455655436288/dz7P3-fy_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2714167411/1407404214","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874890218434560,"id_str":"505874890218434560","text":"@kohecyan3 \n\u540D\u524D:\u4E0A\u91CE\u6EC9\u5E73\n\u547C\u3073\u65B9:\u3046\u3048\u306E\n\u547C\u3070\u308C\u65B9:\u305A\u308B\u304B\u308F\n\u7B2C\u4E00\u5370\u8C61:\u904E\u5270\u306A\u4FFA\u30A4\u30B1\u30E1\u30F3\u3067\u3059\u30A2\u30D4\u30FC\u30EB\n\u4ECA\u306E\u5370\u8C61:\u30D0\u30FC\u30D0\u30EA\u30FC\u306E\u6642\u8A08\n\u597D\u304D\u306A\u3068\u3053\u308D:\u3042\u306E\u81EA\u4FE1\u3055\u3001\u7B11\u3044\u304C\u7D76\u3048\u306A\u3044\n\u4E00\u8A00:\u5927\u5B66\u53D7\u304B\u3063\u305F\u306E\uFF1F\u5FDC\u63F4\u3057\u3066\u308B\u301C(*^^*)\uFF01\n\n#RT\u3057\u305F\u4EBA\u306B\u3084\u308B\n\u3061\u3087\u3063\u3068\u3084\u3063\u3066\u307F\u308B\u7B11","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2591363659,"in_reply_to_user_id_str":"2591363659","in_reply_to_screen_name":"kohecyan3","user":{"id":2613282517,"id_str":"2613282517","name":"K","screen_name":"kawazurukenna","location":"","description":"# I surprise even my self","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":113,"friends_count":185,"listed_count":0,"created_at":"Wed Jul 09 09:39:13 +0000 2014","favourites_count":157,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":242,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/502436858135973888/PcUU0lov_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305F\u4EBA\u306B\u3084\u308B","indices":[119,128]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"kohecyan3","name":"\u4E0A\u91CE\u6EC9\u5E73","id":2591363659,"id_str":"2591363659","indices":[0,10]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:07 +0000 2014","id":505874889392156700,"id_str":"505874889392156672","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"IQ\u2605\u529B\u3060\u3081\u3057","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2709308887,"id_str":"2709308887","name":"IQ\u2605\u529B\u3060\u3081\u3057","screen_name":"iq_tameshi","location":"","description":"\u89E3\u3051\u308B\u3068\u697D\u3057\u3044\u6C17\u5206\u306B\u306A\u308C\u308B\u554F\u984C\u3092\u898B\u3064\u3051\u3066\u7D39\u4ECB\u3057\u307E\u3059\u266A\u9762\u767D\u304B\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":443,"friends_count":1851,"listed_count":1,"created_at":"Tue Aug 05 13:14:30 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":664,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496646485266558977/W_W--qV__normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2709308887/1407244754","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874888817532900,"id_str":"505874888817532928","text":"\u7B2C\u4E00\u4E09\u8ECD\u304B\u3089\uFF12\u500B\u5E2B\u56E3\u304C\u5317\u3078\u79FB\u52D5\u4E2D\u3089\u3057\u3044\u3000\u3000\u3000\u3000\u3000\u3053\u306E\u8ABF\u5B50\u3067\u306F\u6E80\u5DDE\u306B\u9678\u8ECD\u5175\u529B\u304C\u3042\u3075\u308C\u304B\u3048\u308B","source":"\u5982\u6708\u514B\u5DF1","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1171299612,"id_str":"1171299612","name":"\u5982\u6708 \u514B\u5DF1","screen_name":"kisaragi_katumi","location":"\u6E80\u5DDE","description":"G\u30D1\u30F3\u30B0\u306EA\u578BK\u6708\u514B\u5DF1\u4E2D\u5C09\u306E\u975E\u516C\u5F0Fbot\u3067\u3059\u3002 \u4E3B\u306B\u4E03\u5DFB\u3068\u516B\u5DFB\u304C\u4E2D\u5FC3\u306E\u53F0\u8A5E\u3092\u3064\u3076\u3084\u304D\u307E\u3059\u3002 4/18.\u53F0\u8A5E\u8FFD\u52A0\u3057\u307E\u3057\u305F/\u73FE\u5728\u8A66\u904B\u8EE2\u4E2D/\u73FE\u5728\u8EFD\u3044\u6328\u62F6\u3060\u3051TL\u53CD\u5FDC\u3002/\u8FFD\u52A0\u3057\u305F\u3044\u53F0\u8A5E\u3084\u4F55\u304A\u304B\u3057\u3044\u6240\u304C\u3042\u308A\u307E\u3057\u305F\u3089DM\u3084\u30EA\u30D7\u30E9\u30A4\u3067/\u30D5\u30A9\u30ED\u30FC\u8FD4\u3057\u306F\u624B\u52D5\u3067\u3059/","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":65,"friends_count":63,"listed_count":0,"created_at":"Tue Feb 12 08:21:38 +0000 2013","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27219,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3242847112/0ce536444c94cbec607229022d43a27a_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874888616181760,"id_str":"505874888616181760","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5FB3\u7530\u6709\u5E0C\u2605\u5FDC\u63F4\u968A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2766021865,"id_str":"2766021865","name":"\u5FB3\u7530\u6709\u5E0C\u2605\u5FDC\u63F4\u968A","screen_name":"tokuda_ouen1","location":"","description":"\u5973\u5B50\u4E2D\u9AD8\u751F\u306B\u5927\u4EBA\u6C17ww\u3000\u3044\u3084\u3055\u308C\u308B\u30A4\u30E9\u30B9\u30C8\u3092\u7D39\u4ECB\u3057\u307E\u3059\u3002 \r\n\u307F\u3093\u306A\u3067 RT\u3057\u3066\u5FDC\u63F4\u3057\u3088\u3046\uFF5E\u266A \r\n\u300C\u975E\u516C\u5F0F\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u300D","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":978,"listed_count":0,"created_at":"Mon Aug 25 10:48:41 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503857235802333184/YS0sDN6q_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2766021865/1408963998","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874887802511360,"id_str":"505874887802511361","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u8150\u5973\u5B50\u306E\u2606\u90E8\u5C4B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744683982,"id_str":"2744683982","name":"\u8150\u5973\u5B50\u306E\u2606\u90E8\u5C4B","screen_name":"fujyoshinoheya","location":"","description":"\u8150\u5973\u5B50\u306B\u3057\u304B\u308F\u304B\u3089\u306A\u3044\u30CD\u30BF\u3084\u3001\u3042\u308B\u3042\u308B\u3092\u898B\u3064\u3051\u3066\u3044\u304D\u307E\u3059\u3002 \r\n\u4ED6\u306B\u306F\u3001BL\uFF5E\u840C\u3048\u30AD\u30E5\u30F3\u7CFB\u307E\u3067\u3001\u8150\u306E\u305F\u3081\u306E\u753B\u50CF\u3092\u96C6\u3081\u3066\u3044\u307E\u3059\u266A \r\n\u540C\u3058\u5883\u9047\u306E\u4EBA\u306B\u306F\u3001\u308F\u304B\u3063\u3066\u3082\u3089\u3048\u308B\u3068\u601D\u3046\u306E\u3067\u3001\u6C17\u8EFD\u306B RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u2606","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":241,"friends_count":990,"listed_count":0,"created_at":"Tue Aug 19 11:47:21 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":345,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/501697365590306817/GLP_QH_b_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744683982/1408448984","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874887009767400,"id_str":"505874887009767424","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u840C\u3048\u82B8\u8853\u2605\u30E9\u30C6\u30A2\u30FC\u30C8","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763178045,"id_str":"2763178045","name":"\u840C\u3048\u82B8\u8853\u2605\u30E9\u30C6\u30A2\u30FC\u30C8","screen_name":"moe_rate","location":"","description":"\u3053\u3053\u307E\u3067\u6765\u308B\u3068\u3001\u3082\u306F\u3084\u82B8\u8853!! \u898B\u3066\u308B\u3060\u3051\u3067\u697D\u3057\u3044\u266A \r\n\u305D\u3093\u306A\u30E9\u30C6\u30A2\u30FC\u30C8\u3092\u3001\u3068\u3053\u3068\u3093\u63A2\u3057\u307E\u3059\u3002 \r\n\u30B9\u30B4\u30A4\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":187,"friends_count":998,"listed_count":0,"created_at":"Sun Aug 24 16:53:16 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503586151764992000/RC80it20_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2763178045/1408899447","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874886225448960,"id_str":"505874886225448960","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5168\u90E8\u2605\u30B8\u30E3\u30CB\u30FC\u30BA\u56F3\u9451","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2724158970,"id_str":"2724158970","name":"\u5168\u90E8\u2605\u30B8\u30E3\u30CB\u30FC\u30BA\u56F3\u9451","screen_name":"zenbu_johnnys","location":"","description":"\u30B8\u30E3\u30CB\u30FC\u30BA\u306E\u30AB\u30C3\u30B3\u30A4\u30A4\u753B\u50CF\u3001\u304A\u3082\u3057\u308D\u30A8\u30D4\u30BD\u30FC\u30C9\u306A\u3069\u3092\u767A\u4FE1\u3057\u307E\u3059\u3002\r\n\u300C\u975E\u516C\u5F0F\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u300D\r\n\u30B8\u30E3\u30CB\u30FC\u30BA\u597D\u304D\u306A\u4EBA\u306F\u3001\u662F\u975E RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":738,"friends_count":1838,"listed_count":0,"created_at":"Mon Aug 11 15:50:08 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":556,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498859581057945600/ncMKwdvC_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2724158970/1407772462","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874885810200600,"id_str":"505874885810200576","text":"RT @naopisu_: \u547C\u3073\u65B9:\n\u547C\u3070\u308C\u65B9:\n\u7B2C\u4E00\u5370\u8C61:\n\u4ECA\u306E\u5370\u8C61:\n\u597D\u304D\u306A\u3068\u3053\u308D:\n\u5BB6\u65CF\u306B\u3059\u308B\u306A\u3089:\n\u6700\u5F8C\u306B\u4E00\u8A00:\n#RT\u3057\u305F\u4EBA\u306B\u3084\u308B\n\n\u304A\u8179\u75DB\u304F\u3066\u5BDD\u308C\u306A\u3044\u304B\u3089\u3084\u308Bww\n\u3060\u308C\u3067\u3082\u3069\u3046\u305E\u301C\uD83D\uDE0F\uD83D\uDE4C","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347898072,"id_str":"2347898072","name":"\u306B\u305F\u306B\u305F","screen_name":"syo6660129","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":64,"friends_count":70,"listed_count":1,"created_at":"Mon Feb 17 04:29:46 +0000 2014","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":145,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/485603672118669314/73uh_xRS_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2347898072/1396957619","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 14:19:31 +0000 2014","id":505721480261300200,"id_str":"505721480261300224","text":"\u547C\u3073\u65B9:\n\u547C\u3070\u308C\u65B9:\n\u7B2C\u4E00\u5370\u8C61:\n\u4ECA\u306E\u5370\u8C61:\n\u597D\u304D\u306A\u3068\u3053\u308D:\n\u5BB6\u65CF\u306B\u3059\u308B\u306A\u3089:\n\u6700\u5F8C\u306B\u4E00\u8A00:\n#RT\u3057\u305F\u4EBA\u306B\u3084\u308B\n\n\u304A\u8179\u75DB\u304F\u3066\u5BDD\u308C\u306A\u3044\u304B\u3089\u3084\u308Bww\n\u3060\u308C\u3067\u3082\u3069\u3046\u305E\u301C\uD83D\uDE0F\uD83D\uDE4C","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":856045488,"id_str":"856045488","name":"\u306A\u304A\u3074\u3059","screen_name":"naopisu_","location":"Fujino 65th \u21E2 Sagaso 12A(LJK","description":"\uFF3C \u3082\u3046\u3059\u305018\u6B73 \u201COnly One\u201D\u306B\u306A\u308B \uFF0F","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":267,"friends_count":259,"listed_count":2,"created_at":"Mon Oct 01 08:36:23 +0000 2012","favourites_count":218,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1790,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496321592553525249/tuzX9ByR_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/856045488/1407118111","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":23,"favorite_count":1,"entities":{"hashtags":[{"text":"RT\u3057\u305F\u4EBA\u306B\u3084\u308B","indices":[47,56]}],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305F\u4EBA\u306B\u3084\u308B","indices":[61,70]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"naopisu_","name":"\u306A\u304A\u3074\u3059","id":856045488,"id_str":"856045488","indices":[3,12]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:06 +0000 2014","id":505874885474656260,"id_str":"505874885474656256","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u7206\u7B11\u2605LINE \u3042\u308B\u3042\u308B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2709561589,"id_str":"2709561589","name":"\u7206\u7B11\u2605LINE \u3042\u308B\u3042\u308B","screen_name":"line_aru1","location":"","description":"\u601D\u308F\u305A\u7B11\u3063\u3066\u3057\u307E\u3046LINE\u3067\u306E\u3084\u308A\u3068\u308A\u3084\u3001\u3042\u308B\u3042\u308B\u3092\u898B\u3064\u3051\u305F\u3044\u3067\u3059\u266A\u9762\u767D\u304B\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":496,"friends_count":1875,"listed_count":1,"created_at":"Tue Aug 05 15:01:30 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":687,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/496673793939492867/p1BN4YaW_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2709561589/1407251270","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874884627410940,"id_str":"505874884627410944","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5168\u529B\u2605\u30DF\u30B5\u30EF\u7684w\u767A\u8A00","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2734455415,"id_str":"2734455415","name":"\u5168\u529B\u2605\u30DF\u30B5\u30EF\u7684w\u767A\u8A00!!","screen_name":"misawahatugen","location":"","description":"\u30A6\u30B6\u3059\u304E\u3066\u7B11\u3048\u308B\u30DF\u30B5\u30EF\u7684\u540D\u8A00\u3084\u3001\u304A\u3082\u3057\u308D\u30DF\u30B5\u30EF\u753B\u50CF\u3092\u96C6\u3081\u3066\u3044\u307E\u3059\u3002\u3000\r\n\u30DF\u30B5\u30EF\u3092\u77E5\u3089\u306A\u3044\u4EBA\u3067\u3082\u3001\u3044\u304D\u306A\u308A\u30C4\u30DC\u306B\u30CF\u30DE\u3063\u3061\u3083\u3046\u5185\u5BB9\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u3002\u3000\r\n\u30A6\u30B6\u3044\uFF57\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":144,"friends_count":1915,"listed_count":1,"created_at":"Fri Aug 15 13:20:04 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":436,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/500271070834749444/HvengMe5_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2734455415/1408108944","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874883809521660,"id_str":"505874883809521664","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u304A\u5B9Dww\u6709\u540D\u4EBA\u5352\u30A2\u30EB\u7279\u96C6","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2708183557,"id_str":"2708183557","name":"\u304A\u5B9Dww\u6709\u540D\u4EBA\u5352\u30A2\u30EB\u7279\u96C6","screen_name":"otakara_sotuaru","location":"","description":"\u307F\u3093\u306A\u6614\u306F\u82E5\u304B\u3063\u305F\u3093\u3067\u3059\u306D\u3002\u4ECA\u304B\u3089\u306F\u60F3\u50CF\u3082\u3064\u304B\u306A\u3044\u3001\u3042\u306E\u6709\u540D\u4EBA\u3092\u898B\u3064\u3051\u307E\u3059\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":286,"friends_count":1938,"listed_count":0,"created_at":"Tue Aug 05 03:26:54 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":650,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496499121276985344/hC8RoebP_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2708183557/1407318758","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874883322970100,"id_str":"505874883322970112","text":"\u30EC\u30C3\u30C9\u30AF\u30EA\u30D5\u306E\u30AD\u30E3\u30E9\u306E\u3053\u3068\u5973\u88C5\u3063\u3066\u304F\u305D\u308F\u308D\u305Fwww\u671D\u4E00\u3067\u9762\u767D\u304B\u3063\u305F( \u02D8\u03C9\u309C)\u7B11","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1620730616,"id_str":"1620730616","name":"\u3072\u30FC\u3061\u3083\u3093@\u6A58\u828B\u5065\u3074","screen_name":"2nd_8hkr","location":"\u5317\u306E\u5927\u5730.95\u5E74\u7D44 \u261E 9/28.10/2(5).12/28","description":"THE SECOND/\u5287\u56E3EXILE/EXILE/\u4E8C\u4EE3\u76EEJSB \u261EKENCHI.AKIRA.\u9752\u67F3\u7FD4.\u5C0F\u68EE\u96BC.\u77F3\u4E95\u674F\u5948\u261C Big Love \u2661 Respect ..... \u270D MATSU Origin\u2727 .\u305F \u3061 \u3070 \u306A '' \u3044 \u3082 '' \u3051 \u3093 \u3044 \u3061 \u308D \u3046 \u3055 \u3093TEAM NACS \u5B89\u7530.\u6238\u6B21 Liebe !","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":148,"listed_count":0,"created_at":"Thu Jul 25 16:09:29 +0000 2013","favourites_count":783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9541,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/458760951060123648/Cocoxi-2_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1620730616/1408681982","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874883067129860,"id_str":"505874883067129857","text":"\u3010\u72B6\u614B\u826F\u597D\u3011\u30DA\u30F3\u30BF\u30C3\u30AF\u30B9\u30FB\u30C7\u30B8\u30BF\u30EB\u4E00\u773C\u30EC\u30D5\u30AB\u30E1\u30E9\u30FBK20D \u5165\u672D\u6570=38 \u73FE\u5728\u4FA1\u683C=15000\u5186 http://t.co/4WK1f6V2n6\u7D42\u4E86=2014\u5E7408\u670831\u65E5 20:47:53 #\u4E00\u773C\u30EC\u30D5 http://t.co/PcSaXzfHMW","source":"YahooAuction Degicame","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2278053589,"id_str":"2278053589","name":"AuctionCamera","screen_name":"AuctionCamera","location":"","description":"Yahoo\u30AA\u30FC\u30AF\u30B7\u30E7\u30F3\u306E\u30C7\u30B8\u30AB\u30E1\u30AB\u30C6\u30B4\u30EA\u304B\u3089\u5546\u54C1\u3092\u62BD\u51FA\u3059\u308B\u30DC\u30C3\u30C8\u3067\u3059\u3002","url":"https://t.co/3sB1NDnd0m","entities":{"url":{"urls":[{"url":"https://t.co/3sB1NDnd0m","expanded_url":"https://github.com/AKB428/YahooAuctionBot","display_url":"github.com/AKB428/YahooAu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5,"friends_count":24,"listed_count":0,"created_at":"Sun Jan 05 20:10:56 +0000 2014","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":199546,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/419927606146789376/vko-kd6Q_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4E00\u773C\u30EC\u30D5","indices":[95,100]}],"symbols":[],"urls":[{"url":"http://t.co/4WK1f6V2n6","expanded_url":"http://atq.ck.valuecommerce.com/servlet/atq/referral?sid=2219441&pid=877510753&vcptn=auct/p/RJH492.PLqoLQQx1Jy8U9LE-&vc_url=http://page8.auctions.yahoo.co.jp/jp/auction/h192024356","display_url":"atq.ck.valuecommerce.com/servlet/atq/re\u2026","indices":[49,71]}],"user_mentions":[],"media":[{"id":505874882828046340,"id_str":"505874882828046336","indices":[101,123],"media_url":"http://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg","media_url_https":"https://pbs.twimg.com/media/BwU6hpPCEAAxnpq.jpg","url":"http://t.co/PcSaXzfHMW","display_url":"pic.twitter.com/PcSaXzfHMW","expanded_url":"http://twitter.com/AuctionCamera/status/505874883067129857/photo/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874882995826700,"id_str":"505874882995826689","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30E4\u30D0\u3059\u304E\u308B!!\u30AE\u30CD\u30B9\u4E16\u754C\u8A18\u9332","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762405780,"id_str":"2762405780","name":"\u30E4\u30D0\u3059\u304E\u308B!!\u30AE\u30CD\u30B9\u4E16\u754C\u8A18\u9332","screen_name":"yabai_giness","location":"","description":"\u4E16\u306E\u4E2D\u306B\u306F\u3001\u307E\u3060\u307E\u3060\u77E5\u3089\u308C\u3066\u3044\u306A\u3044\u30B9\u30B4\u30A4\u8A18\u9332\u304C\u3042\u308B\u3093\u3067\u3059\uFF01 \r\n\u305D\u3093\u306A\u30AE\u30CD\u30B9\u4E16\u754C\u8A18\u9332\u3092\u898B\u3064\u3051\u307E\u3059\u2606 \r\n\u3069\u3093\u3069\u3093\u53CB\u9054\u306B\u3082\u6559\u3048\u3066\u3042\u3052\u3066\u304F\u3060\u3055\u3044\u306Dww \r\n\u30E4\u30D0\u30A4\u3068\u601D\u3063\u305F\u3089 RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u3092\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":36,"friends_count":985,"listed_count":0,"created_at":"Sun Aug 24 13:17:03 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":210,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503531782919045121/NiIC25wL_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2762405780/1408886328","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874882870009860,"id_str":"505874882870009856","text":"\u3059\u3054\u304F\u9762\u767D\u3044\u5922\u898B\u305F\u3002\u9B54\u6CD5\u79D1\u9AD8\u6821\u901A\u3063\u3066\u3066\uFF08\u5225\u306B\u4E00\u79D1\u4E8C\u79D1\u306E\u533A\u5225\u306A\u3044\uFF09\u30AF\u30E9\u30B9\u30E1\u30A4\u30C8\u306B\u30E8\u30BB\u30A2\u30C4\u30E1\u9762\u5B50\u3084\u8D64\u50D5\u306E\u62D3\u4E5F\u304C\u3044\u3066\u3001\u5B66\u6821\u5BFE\u6297\u5408\u5531\u30B3\u30F3\u30AF\u30FC\u30EB\u304C\u958B\u50AC\u3055\u308C\u305F\u308A\u4F1A\u5834\u5165\u308A\u306E\u969B\u4ED6\u6821\u306E\u59A8\u5BB3\u5DE5\u4F5C\u53D7\u3051\u305F\u308A\u3001\u62D3\u4E5F\u304C\u9023\u308C\u3066\u304D\u3066\u305F\u5B9F\u304C\u4EBA\u8CEA\u306B\u53D6\u3089\u308C\u305F\u308A\u3068\u306B\u304B\u304F\u3066\u3093\u3053\u76DB\u308A\u3060\u3063\u305F\u697D\u3057\u304B\u3063\u305F\u8D64\u50D5\u8AAD\u307F\u305F\u3044\u624B\u5143\u306B\u306A\u3044","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":597357105,"id_str":"597357105","name":"\u3075\u3058\u3088\u3057","screen_name":"fuji_mark","location":"\u591A\u6469\u52D5\u7269\u516C\u5712","description":"\u6210\u4EBA\u8150\u5973\u5B50","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":128,"friends_count":126,"listed_count":6,"created_at":"Sat Jun 02 10:06:05 +0000 2012","favourites_count":2842,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":10517,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http://abs.twimg.com/images/themes/theme4/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme4/bg.gif","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503553738569560065/D_JW2dCJ_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/597357105/1408864355","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874882228281340,"id_str":"505874882228281345","text":"RT @oen_yakyu: \u25CF\u7D99\u7D9A\u8A66\u5408\uFF08\u4E2D\u4EAC\u5BFE\u5D07\u5FB3\uFF0946\u56DE\uFF5E\u30009\u6642\uFF5E\n\u3000\u3008\u30E9\u30B8\u30AA\u4E2D\u7D99\u3009\n\u3000\u3089\u3058\u308B\u2605\u3089\u3058\u308B\u2192\u5927\u962A\u653E\u9001\u5C40\u3092\u9078\u629E\u2192NHK-FM\n\u25CF\u6C7A\u52DD\u6226(\u4E09\u6D66\u5BFE\u4E2D\u4EACor\u5D07\u5FB3)\u300012\u664230\u5206\uFF5E\n\u3000\u3008\u30E9\u30B8\u30AA\u4E2D\u7D99\u3009\n\u3000\u3089\u3058\u308B\u2605\u3089\u3058\u308B\u2192\u5927\u962A\u653E\u9001\u5C40\u3092\u9078\u629E\u2192NHK\u7B2C\u4E00\n\u3000\u203B\u795E\u5948\u5DDD\u306E\u65B9\u306F\u666E\u901A\u306E\u30E9\u2026","source":"twicca","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18477566,"id_str":"18477566","name":"Natit\uFF08\u306A\u3061\uFF09\uFF20\u305D\u3046\u3060\u3001\u30C8\u30C3\u30D7\u884C\u3053\u3046","screen_name":"natit_yso","location":"\u798F\u5CA1\u5E02\u306E\u7AEF\u3063\u3053","description":"\u30E4\u30FC\u30FB\u30C1\u30E3\u30A4\u30AB\u3002\u7D2B\u5B9D\u52E2\u306E\u672B\u5E2D\u304F\u3089\u3044\u3067QMA\u3084\u3063\u3066\u307E\u3059\u3002\r\n9/13\uFF08\u571F\uFF09\u300C\u4E5D\u5DDE\u676F\u300D\u4ECA\u5E74\u3082\u5B9C\u3057\u304F\u304A\u9858\u3044\u3057\u307E\u3059\uFF01\u30AD\u30FC\u30EF\u30FC\u30C9\u306F\u300C\u305D\u3046\u3060\u3001\u30C8\u30C3\u30D7\u3001\u884C\u3053\u3046\u3002\u300D\r\nmore \u2192 http://t.co/ezuHyjF4Qy \r\n\u3010\u65C5\u306E\u4E88\u5B9A\u30119/20-22 \u95A2\u897F \u2192 9/23-28 \u5317\u6D77\u9053\u3050\u308B\u308A","url":"http://t.co/ll2yu78DGR","entities":{"url":{"urls":[{"url":"http://t.co/ll2yu78DGR","expanded_url":"http://qma-kyushu.sakura.ne.jp/","display_url":"qma-kyushu.sakura.ne.jp","indices":[0,22]}]},"description":{"urls":[{"url":"http://t.co/ezuHyjF4Qy","expanded_url":"http://twpf.jp/natit_yso","display_url":"twpf.jp/natit_yso","indices":[83,105]}]}},"protected":false,"followers_count":591,"friends_count":548,"listed_count":93,"created_at":"Tue Dec 30 14:11:44 +0000 2008","favourites_count":11676,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":130145,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http://abs.twimg.com/images/themes/theme14/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme14/bg.gif","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1556202861/chibi-Leon_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 23:12:39 +0000 2014","id":505855649196953600,"id_str":"505855649196953600","text":"\u25CF\u7D99\u7D9A\u8A66\u5408\uFF08\u4E2D\u4EAC\u5BFE\u5D07\u5FB3\uFF0946\u56DE\uFF5E\u30009\u6642\uFF5E\n\u3000\u3008\u30E9\u30B8\u30AA\u4E2D\u7D99\u3009\n\u3000\u3089\u3058\u308B\u2605\u3089\u3058\u308B\u2192\u5927\u962A\u653E\u9001\u5C40\u3092\u9078\u629E\u2192NHK-FM\n\u25CF\u6C7A\u52DD\u6226(\u4E09\u6D66\u5BFE\u4E2D\u4EACor\u5D07\u5FB3)\u300012\u664230\u5206\uFF5E\n\u3000\u3008\u30E9\u30B8\u30AA\u4E2D\u7D99\u3009\n\u3000\u3089\u3058\u308B\u2605\u3089\u3058\u308B\u2192\u5927\u962A\u653E\u9001\u5C40\u3092\u9078\u629E\u2192NHK\u7B2C\u4E00\n\u3000\u203B\u795E\u5948\u5DDD\u306E\u65B9\u306F\u666E\u901A\u306E\u30E9\u30B8\u30AA\u306ENHK-FM\u3067\u3082","source":"Twitter Web Client","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2761692762,"id_str":"2761692762","name":"\u4E09\u6D66\u5B66\u82D1\u8EDF\u5F0F\u91CE\u7403\u90E8\u5FDC\u63F4\u56E3\uFF01","screen_name":"oen_yakyu","location":"","description":"\u5175\u5EAB\u770C\u3067\u958B\u50AC\u3055\u308C\u308B\u300C\u3082\u3046\u4E00\u3064\u306E\u7532\u5B50\u5712\u300D\u3053\u3068\u5168\u56FD\u9AD8\u6821\u8EDF\u5F0F\u91CE\u7403\u9078\u624B\u6A29\u5927\u4F1A\u306B\u5357\u95A2\u6771\u30D6\u30ED\u30C3\u30AF\u304B\u3089\u51FA\u5834\u3059\u308B\u4E09\u6D66\u5B66\u82D1\u8EDF\u5F0F\u91CE\u7403\u90E8\u3092\u5FDC\u63F4\u3059\u308B\u975E\u516C\u5F0F\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u3002","url":"http://t.co/Cn1tPTsBGY","entities":{"url":{"urls":[{"url":"http://t.co/Cn1tPTsBGY","expanded_url":"http://www.miura.ed.jp/index.html","display_url":"miura.ed.jp/index.html","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":464,"friends_count":117,"listed_count":4,"created_at":"Sun Aug 24 07:47:29 +0000 2014","favourites_count":69,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":553,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/504299474445811712/zsxJUmL0_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2761692762/1409069337","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"oen_yakyu","name":"\u4E09\u6D66\u5B66\u82D1\u8EDF\u5F0F\u91CE\u7403\u90E8\u5FDC\u63F4\u56E3\uFF01","id":2761692762,"id_str":"2761692762","indices":[3,13]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874882110824450,"id_str":"505874882110824448","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30B9\u30DE\u30DB\u306B\u5BC6\u5C01\u2605\u30A2\u30CB\u30E1\u753B\u50CF","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2725976444,"id_str":"2725976444","name":"\u30B9\u30DE\u30DB\u306B\u5BC6\u5C01\u2605\u30A2\u30CB\u30E1\u753B\u50CF","screen_name":"sumahoanime","location":"","description":"\u306A\u3093\u3068\u3082\u3081\u305A\u3089\u3057\u3044\u3001\u3044\u308D\u3093\u306A\u30AD\u30E3\u30E9\u304C\u30B9\u30DE\u30DB\u306B\u9589\u3058\u8FBC\u3081\u3089\u308C\u3066\u3044\u307E\u3059\u3002 \r\n\u3042\u306A\u305F\u306E\u30B9\u30DE\u30DB\u306B\u30DE\u30C3\u30C1\u3059\u308B\u753B\u50CF\u304C\u898B\u3064\u304B\u308B\u304B\u3082\u266A \r\n\u6C17\u306B\u5165\u3063\u305F\u3089\u662F\u975E RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":227,"friends_count":1918,"listed_count":0,"created_at":"Tue Aug 12 11:27:54 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":527,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/499155646164393984/l5vSz5zu_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2725976444/1407843121","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:05 +0000 2014","id":505874881297133600,"id_str":"505874881297133568","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30A2\u30CA\u30BF\u306E\u305D\u3070\u306E\u8EAB\u8FD1\u306A\u5371\u967A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2713926078,"id_str":"2713926078","name":"\u30A2\u30CA\u30BF\u306E\u305D\u3070\u306E\u8EAB\u8FD1\u306A\u5371\u967A","screen_name":"mijika_kiken","location":"","description":"\u77E5\u3089\u306A\u3044\u3046\u3061\u306B\u3084\u3063\u3066\u3044\u308B\u5371\u967A\u306A\u884C\u52D5\u3092\u898B\u3064\u3051\u3066\u81EA\u5206\u3092\u5B88\u308A\u307E\u3057\u3087\u3046\u3002 \u5F79\u306B\u7ACB\u3064\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":301,"friends_count":1871,"listed_count":0,"created_at":"Thu Aug 07 07:12:50 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":644,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/497279579245907968/Ftvms_HR_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2713926078/1407395683","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:04 +0000 2014","id":505874880294682600,"id_str":"505874880294682624","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u4EBA\u6C17\u8005\u2665\u30C7\u30A4\u30B8\u30FC\u5927\u597D\u304D","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2726199583,"id_str":"2726199583","name":"\u4EBA\u6C17\u8005\u2665\u30C7\u30A4\u30B8\u30FC\u5927\u597D\u304D","screen_name":"ninkimono_daosy","location":"","description":"\u30C7\u30A4\u30B8\u30FC\u306E\u60F3\u3044\u3092\u3001\u4EE3\u308F\u308A\u306B\u3064\u3076\u3084\u304D\u307E\u3059\u266A \r\n\u30C7\u30A4\u30B8\u30FC\u306E\u304B\u308F\u3044\u3044\u753B\u50CF\u3084\u30B0\u30C3\u30BA\u3082\u5927\u597D\u304D\uFF57 \r\n\u53EF\u611B\u3044\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002 \r\n\u300C\u975E\u516C\u5F0F\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u3059\u300D","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":190,"friends_count":474,"listed_count":0,"created_at":"Tue Aug 12 12:58:33 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":469,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/499178622494576640/EzWKdR_p_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2726199583/1407848478","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:04 +0000 2014","id":505874879392919550,"id_str":"505874879392919552","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u5E78\u305B\u8A71\u3067\u30D5\u30EB\u5145\u96FB\u3057\u3088\u3046","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2721453846,"id_str":"2721453846","name":"\u5E78\u305B\u8A71\u3067\u30D5\u30EB\u5145\u96FB\u3057\u3088\u3046ww","screen_name":"shiawasehanashi","location":"","description":"\u79C1\u304C\u805E\u3044\u3066\u5FC3\u306B\u6B8B\u3063\u305F\u611F\u52D5\u30A8\u30D4\u30BD\u30FC\u30C9\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u3002\r\n\u5C11\u3057\u3067\u3082\u591A\u304F\u306E\u4EBA\u3078\u5C4A\u3051\u305F\u3044\u3068\u601D\u3044\u307E\u3059\u3002\r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":302,"friends_count":1886,"listed_count":0,"created_at":"Sun Aug 10 12:16:25 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":508,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498444554916216832/ml8EiQka_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2721453846/1407673555","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:04 +0000 2014","id":505874879103520800,"id_str":"505874879103520768","text":"RT @Ang_Angel73: \u9022\u5742\u300C\u304F\u3063\u2026\u50D5\u306E\u79D8\u3081\u3089\u308C\u3057\u53F3\u76EE\u304C\u2026\uFF01\u300D\n\u4E00\u540C\u300C\u2026\u2026\u2026\u2026\u2026\u3002\u300D","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2571968509,"id_str":"2571968509","name":"\u30A4\u30A4\u30D2\u30C8","screen_name":"IwiAlohomora","location":"\u8349\u8449\u306E\u9670","description":"\u5927\u4EBA\u3067\u3059\u3002\u6C17\u8EFD\u306B\u7D61\u3093\u3067\u304F\u308C\u308B\u3068\u3046\u308C\u3057\u3044\u3067\u3059\uFF01 \u30A4\u30E9\u30B9\u30C8\u5927\u597D\u304D\uFF01\uFF08\u2267\u2207\u2266\uFF09 BF(\u4EEE\uFF09\u9022\u5742\u7D18\u5922\u304F\u3093\u306B\u304A\u71B1\u3067\u3059\uFF01 \u30DE\u30F3\u30AC\u3082\u597D\u304D\u2661\u6B32\u671B\u306E\u307E\u307E\u306B\u3064\u3076\u3084\u304D\u307E\u3059\u306E\u3067\u3054\u6CE8\u610F\u3092\u3002\u96D1\u98DF\u2661","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":156,"friends_count":165,"listed_count":14,"created_at":"Tue Jun 17 01:18:34 +0000 2014","favourites_count":11926,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7234,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/504990074862178304/DoBvOb9c_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2571968509/1409106012","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:27:01 +0000 2014","id":505874364596621300,"id_str":"505874364596621313","text":"\u9022\u5742\u300C\u304F\u3063\u2026\u50D5\u306E\u79D8\u3081\u3089\u308C\u3057\u53F3\u76EE\u304C\u2026\uFF01\u300D\n\u4E00\u540C\u300C\u2026\u2026\u2026\u2026\u2026\u3002\u300D","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1600750194,"id_str":"1600750194","name":"\u81D9\u8102","screen_name":"Ang_Angel73","location":"\u9022\u5742\u7D18\u5922\u306E\u305D\u3070\u306B","description":"\u81EA\u7531\u3001\u6C17\u307E\u307E\u306B\u3002\u8A73\u3057\u304F\u306F\u30C4\u30A4\u30D7\u30ED\u3002\u30A2\u30A4\u30B3\u30F3\u306F\u307E\u3081\u305B\u308D\u308A\u3061\u3083\u3093\u304B\u3089\u3060\u3088\u2606\uFF5E\uFF08\u309D\u3002\u2202\uFF09","url":"http://t.co/kKCCwHTaph","entities":{"url":{"urls":[{"url":"http://t.co/kKCCwHTaph","expanded_url":"http://twpf.jp/Ang_Angel73","display_url":"twpf.jp/Ang_Angel73","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":155,"friends_count":154,"listed_count":10,"created_at":"Wed Jul 17 11:44:31 +0000 2013","favourites_count":2115,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":12342,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/378800000027871001/aa764602922050b22bf9ade3741367dc.jpeg","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/500293786287603713/Ywyh69eG_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1600750194/1403879183","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Ang_Angel73","name":"\u81D9\u8102","id":1600750194,"id_str":"1600750194","indices":[3,15]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:04 +0000 2014","id":505874877933314050,"id_str":"505874877933314048","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u79D8\u5BC6\u306E\u672C\u97F3\u2665\u5973\u5B50\u7DE8","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762237088,"id_str":"2762237088","name":"\u79D8\u5BC6\u306E\u672C\u97F3\u2665\u5973\u5B50\u7DE8","screen_name":"honne_jyoshi1","location":"","description":"\u666E\u6BB5\u306F\u8A00\u3048\u306A\u3044\u300C\u304A\u30FB\u3093\u30FB\u306A\u306E\u5EFA\u524D\u3068\u672C\u97F3\u300D\u3092\u3064\u3076\u3084\u304D\u307E\u3059\u3002 \u6C17\u306B\u306A\u308B \u3042\u306E\u4EBA\u306E\u672C\u97F3\u3082\u3001\u308F\u304B\u308B\u304B\u3082!? \r\n\u308F\u304B\u308B\u3063\u3066\u4EBA\u306F RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u3092\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":988,"listed_count":0,"created_at":"Sun Aug 24 12:27:07 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":211,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503519190364332032/BVjS_XBD_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2762237088/1408883328","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:04 +0000 2014","id":505874877148958700,"id_str":"505874877148958721","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u7F8E\u3057\u904E\u304E\u308B\u2605\u8272\u925B\u7B46\u30A2\u30FC\u30C8","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2740047343,"id_str":"2740047343","name":"\u7F8E\u3057\u904E\u304E\u308B\u2605\u8272\u925B\u7B46\u30A2\u30FC\u30C8","screen_name":"bi_iroenpitu","location":"","description":"\u307B\u3093\u3068\u306B\u30B3\u30EC\u8272\u925B\u7B46\u306A\u306E\uFF5E\uFF1F \r\n\u672C\u7269\u3068\u898B\u9593\u9055\u3048\u308B\u7A0B\u306E\u30EA\u30A2\u30EA\u30C6\u30A3\u3092\u5FA1\u89A7\u304F\u3060\u3055\u3044\u3002 \r\n\u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":321,"friends_count":1990,"listed_count":0,"created_at":"Sun Aug 17 16:15:05 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":396,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501039950972739585/isigil4V_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2740047343/1408292283","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874876465295360,"id_str":"505874876465295361","text":"\u3010H15-9-4\u3011\u9053\u8DEF\u3092\u5229\u7528\u3059\u308B\u5229\u76CA\u306F\u53CD\u5C04\u7684\u5229\u76CA\u3067\u3042\u308A\u3001\u5EFA\u7BC9\u57FA\u6E96\u6CD5\u306B\u57FA\u3065\u3044\u3066\u9053\u8DEF\u4E00\u306E\u6307\u5B9A\u304C\u306A\u3055\u308C\u3066\u3044\u308B\u79C1\u9053\u306E\u6577\u5730\u6240\u6709\u8005\u306B\u5BFE\u3057\u3001\u901A\u884C\u59A8\u5BB3\u884C\u70BA\u306E\u6392\u9664\u3092\u6C42\u3081\u308B\u4EBA\u683C\u7684\u6A29\u5229\u3092\u8A8D\u3081\u308B\u3053\u3068\u306F\u3067\u304D\u306A\u3044\u3002\u2192\u8AA4\u3002","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1886570281,"id_str":"1886570281","name":"\u884C\u653F\u6CD5\u904E\u53BB\u554F","screen_name":"gyosei_goukaku","location":"","description":"\u884C\u653F\u66F8\u58EB\u306E\u672C\u8A66\u9A13\u554F\u984C\u306E\u904E\u53BB\u554F\uFF08\u884C\u653F\u6CD5\u5206\u91CE\uFF09\u3092\u30E9\u30F3\u30C0\u30E0\u306B\u3064\u3076\u3084\u304D\u307E\u3059\u3002\u554F\u984C\u306F\u968F\u6642\u8FFD\u52A0\u4E2D\u3067\u3059\u3002\u57FA\u672C\u7684\u306B\u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3057\u307E\u3059\u3002\u203B140\u5B57\u5236\u9650\u306E\u90FD\u5408\u4E0A\u3001\u8868\u73FE\u306F\u4E00\u90E8\u5909\u3048\u3066\u3042\u308A\u307E\u3059\u3002\u89E3\u8AAC\u3082\u6587\u5B57\u6570\u304C\u53EF\u80FD\u3067\u3042\u308C\u3070\u306A\u308B\u3079\u304F\u2026\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1554,"friends_count":1772,"listed_count":12,"created_at":"Fri Sep 20 13:24:29 +0000 2013","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14565,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000487791870/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874876318511100,"id_str":"505874876318511104","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"K\u70B9\u8D8A\u3048\u306E\u767A\u60F3\u529B!!","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744863153,"id_str":"2744863153","name":"K\u70B9\u8D8A\u3048\u306E\u767A\u60F3\u529B!!","screen_name":"kgoehassou","location":"","description":"\u3044\u3063\u305F\u3044\u3069\u3046\u3084\u3063\u305F\u3089\u3001\u305D\u306E\u9818\u57DF\u306B\u305F\u3069\u308A\u3064\u3051\u308B\u306E\u304B\uFF01\uFF1F \r\n\u305D\u3093\u306A\u601D\u308F\u305A\u7B11\u3063\u3066\u3057\u307E\u3046\u5225\u4E16\u754C\u306E\u767A\u60F3\u529B\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u304A\u3082\u3057\u308D\u304B\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":957,"listed_count":0,"created_at":"Tue Aug 19 13:00:08 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":341,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501715651686178816/Fgpe0B8M_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744863153/1408453328","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874875521581060,"id_str":"505874875521581056","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u8840\u6DB2\u578B\u306E\u771F\u5B9F\uFF12","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2698625690,"id_str":"2698625690","name":"\u8840\u6DB2\u578B\u306E\u771F\u5B9F","screen_name":"ketueki_sinjitu","location":"","description":"\u3084\u3063\u3071\u308A\u305D\u3046\u3060\u3063\u305F\u306E\u304B\uFF5E\u266A\r\n\u610F\u5916\u306A\u3001\u3042\u306E\u4EBA\u306E\u88CF\u5074\u3092\u898B\u3064\u3051\u307E\u3059\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":193,"friends_count":1785,"listed_count":1,"created_at":"Fri Aug 01 16:11:40 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":769,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/495241446706790400/h_0DSFPG_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2698625690/1406911319","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874874712072200,"id_str":"505874874712072192","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u3084\u3063\u3071\u308A\u795E\u304C\uFF1F\uFF1F\u3092\u4F5C\u308B\u6642","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2714868440,"id_str":"2714868440","name":"\u3084\u3063\u3071\u308A\u795E\u304C\uFF1F\uFF1F\u3092\u4F5C\u308B\u6642","screen_name":"yahari_kamiga","location":"","description":"\u3084\u3063\u3071\u308A\u4ECA\u65E5\u3082\u3001\u795E\u306F\u4F55\u304B\u3092\u4F5C\u308D\u3046\u3068\u3057\u3066\u3044\u307E\u3059\u3000\u7B11\u3002\u3000\u3069\u3046\u3084\u3063\u3066\u4F5C\u3063\u3066\u3044\u308B\u306E\u304B\u308F\u304B\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":243,"friends_count":1907,"listed_count":0,"created_at":"Thu Aug 07 16:12:33 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":590,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/497416102108884992/NRMEbKaT_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2714868440/1407428237","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874874275864600,"id_str":"505874874275864576","text":"RT @takuramix: \u798F\u5CF6\u7B2C\u4E00\u539F\u767A\u306E\u69CB\u5185\u5730\u56F3\u304C\u3053\u3061\u3089\u3002\nhttp://t.co/ZkU4TZCGPG\n\u3069\u3046\u898B\u3066\u3082\u3001\uFF11\u53F7\u6A5F\u3002\nRT @Lightworker19: \u3010\u5927\u62E1\u6563\u3011\u3000 \u798F\u5CF6\u7B2C\u4E00\u539F\u767A\u3000\uFF14\u53F7\u6A5F\u3000\u7206\u767A\u52D5\u753B\u300040\u79D2\uFF5E \u3000http://t.co/lmlgp38fgZ","source":"\u30C4\u30A4\u30BF\u30DE","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62525372,"id_str":"62525372","name":"NANCY-MOON\u2606\u3072\u3088\u3053\u3061\u3083\u3093\u2606","screen_name":"nancy_moon_703","location":"JAPAN","description":"\u3010\u7121\u65AD\u8EE2\u8F09\u7981\u6B62\uFF65\u30B3\u30D4\u30DA\u7981\u6B62\u30FB\u975E\u516C\u5F0FRT\u7981\u6B62\u3011\u3010\u5FC5\u8AAD\uFF01\u3011\u21D2 http://t.co/nuUvfUVD \u4ECA\u73FE\u5728\u6D3B\u52D5\u4E2D\u306E\u6771\u65B9\u795E\u8D77YUNHO\uFF06CHANGMIN\u306E2\u4EBA\u3092\u5168\u529B\u3067\u5FDC\u63F4\u3057\u3066\u3044\u307E\u3059!!(^_-)-\u2606 \u203B\u6771\u65B9\u795E\u8D77\u53CA\u3073YUNHO\uFF06CHANGMIN\u3092\u5FDC\u63F4\u3057\u3066\u3044\u306A\u3044\u65B9\u30FB\u9375\u4ED8\u30E6\u30FC\u30B6\u30FC\u306E\u30D5\u30A9\u30ED\u30FC\u304A\u65AD\u308A\uFF01","url":null,"entities":{"description":{"urls":[{"url":"http://t.co/nuUvfUVD","expanded_url":"http://goo.gl/SrGLb","display_url":"goo.gl/SrGLb","indices":[29,49]}]}},"protected":false,"followers_count":270,"friends_count":328,"listed_count":4,"created_at":"Mon Aug 03 14:22:24 +0000 2009","favourites_count":3283,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":180310,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/470849781397336064/ltM6EdFn.jpeg","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3699005246/9ba2e306518d296b68b7cbfa5e4ce4e6_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/62525372/1401094223","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F065A8","profile_text_color":"080808","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 21:21:33 +0000 2014","id":505827689660313600,"id_str":"505827689660313600","text":"\u798F\u5CF6\u7B2C\u4E00\u539F\u767A\u306E\u69CB\u5185\u5730\u56F3\u304C\u3053\u3061\u3089\u3002\nhttp://t.co/ZkU4TZCGPG\n\u3069\u3046\u898B\u3066\u3082\u3001\uFF11\u53F7\u6A5F\u3002\nRT @Lightworker19: \u3010\u5927\u62E1\u6563\u3011\u3000 \u798F\u5CF6\u7B2C\u4E00\u539F\u767A\u3000\uFF14\u53F7\u6A5F\u3000\u7206\u767A\u52D5\u753B\u300040\u79D2\uFF5E \u3000http://t.co/lmlgp38fgZ","source":"TweetDeck","truncated":false,"in_reply_to_status_id":505774460910043140,"in_reply_to_status_id_str":"505774460910043136","in_reply_to_user_id":238157843,"in_reply_to_user_id_str":"238157843","in_reply_to_screen_name":"Lightworker19","user":{"id":29599253,"id_str":"29599253","name":"\u30BF\u30AF\u30E9\u30DF\u30C3\u30AF\u30B9","screen_name":"takuramix","location":"i7","description":"\u79C1\u306E\u6A5F\u80FD\u4E00\u89A7\uFF1A\u6B4C\u3046\u3001\u6F14\u5287\u3001\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF\u30A8\u30F3\u30B8\u30CB\u30A2\u3001\u30E9\u30A4\u30BF\u30FC\u3001\u30D7\u30ED\u30B0\u30E9\u30DE\u3001\u7FFB\u8A33\u3001\u30B7\u30EB\u30D0\u30FC\u30A2\u30AF\u30BB\u30B5\u30EA\u3001\u2026\u2026\u4F55\u3092\u3084\u3063\u3066\u308B\u4EBA\u304B\u306F\u826F\u304F\u308F\u304B\u3089\u306A\u3044\u4EBA\u306A\u306E\u3067\u3001\u300C\u6A5F\u80FD\u300D\u304C\u6B32\u3057\u3044\u4EBA\u306F\u79C1\u306B\u304C\u3063\u304B\u308A\u3059\u308B\u3067\u3057\u3087\u3046\u3002\u79C1\u3063\u3066\u4EBA\u9593\u306B\u5FA1\u7528\u304C\u3042\u308B\u306A\u3089\u5225\u3067\u3059\u304C\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5136,"friends_count":724,"listed_count":335,"created_at":"Wed Apr 08 01:10:58 +0000 2009","favourites_count":21363,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":70897,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2049751947/takuramix1204_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/ZkU4TZCGPG","expanded_url":"http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif","display_url":"tepco.co.jp/nu/fukushima-n\u2026","indices":[17,39]},{"url":"http://t.co/lmlgp38fgZ","expanded_url":"http://youtu.be/gDXEhyuVSDk","display_url":"youtu.be/gDXEhyuVSDk","indices":[99,121]}],"user_mentions":[{"screen_name":"Lightworker19","name":"Lightworker","id":238157843,"id_str":"238157843","indices":[54,68]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/ZkU4TZCGPG","expanded_url":"http://www.tepco.co.jp/nu/fukushima-np/review/images/review1_01.gif","display_url":"tepco.co.jp/nu/fukushima-n\u2026","indices":[32,54]},{"url":"http://t.co/lmlgp38fgZ","expanded_url":"http://youtu.be/gDXEhyuVSDk","display_url":"youtu.be/gDXEhyuVSDk","indices":[114,136]}],"user_mentions":[{"screen_name":"takuramix","name":"\u30BF\u30AF\u30E9\u30DF\u30C3\u30AF\u30B9","id":29599253,"id_str":"29599253","indices":[3,13]},{"screen_name":"Lightworker19","name":"Lightworker","id":238157843,"id_str":"238157843","indices":[69,83]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874873961308160,"id_str":"505874873961308160","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u3084\u3063\u3071\u308A\u30A2\u30CA\u96EA\u304C\u597D\u304D\u2665","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2714052962,"id_str":"2714052962","name":"\u3084\u3063\u3071\u308A\u30A2\u30CA\u96EA\u304C\u597D\u304D\u2665","screen_name":"anayuki_suki","location":"","description":"\u306A\u3093\u3060\u304B\u3093\u3060\u8A00\u3063\u3066\u3082\u3084\u3063\u3071\u308A\u30A2\u30CA\u96EA\u304C\u597D\u304D\u306A\u3093\u3067\u3059\u3088\u306D\uFF5E\u266A \r\n\u79C1\u3082\u597D\u304D\u3063\u3066\u4EBA\u306F RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":368,"friends_count":1826,"listed_count":1,"created_at":"Thu Aug 07 08:29:13 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":670,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/497299646662705153/KMo3gkv7_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2714052962/1407400477","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"zh"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874873759977500,"id_str":"505874873759977473","text":"\u56DB\u5DDD\u76C6\u5730\u6C5F\u6DEE\u7B49\u5730\u5C06\u6709\u5F3A\u964D\u96E8 \u5F00\u5B66\u65E5\u591A\u5730\u5C06\u6709\u96E8: \u3000\u3000\u4E2D\u65B0\u7F518\u670831\u65E5\u7535 \u636E\u4E2D\u592E\u6C14\u8C61\u53F0\u6D88\u606F\uFF0C\u6C5F\u6DEE\u4E1C\u90E8\u3001\u56DB\u5DDD\u76C6\u5730\u4E1C\u5317\u90E8\u7B49\u5730\u4ECA\u5929(31\u65E5)\u53C8\u5C06\u8FCE\u6765\u4E00\u573A\u66B4\u96E8\u6216\u5927\u66B4\u96E8\u5929\u6C14\u3002\u660E\u59299\u67081\u65E5\uFF0C\u662F\u4E2D\u5C0F\u5B66\u751F\u5F00\u5B66\u7684\u65E5\u5B50\u3002\u9884\u8BA1\u660E\u5929\uFF0C\u5185\u8499\u53E4\u4E2D\u90E8\u3001... http://t.co/toQgVlXPyH","source":"twitterfeed","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2281979863,"id_str":"2281979863","name":"News 24h China","screen_name":"news24hchn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":719,"friends_count":807,"listed_count":7,"created_at":"Wed Jan 08 10:56:04 +0000 2014","favourites_count":0,"utc_offset":7200,"time_zone":"Amsterdam","geo_enabled":false,"verified":false,"statuses_count":94782,"lang":"it","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/452558963754561536/QPID3isM.jpeg","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/439031926569979904/SlBH9iMg_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2281979863/1393508427","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/toQgVlXPyH","expanded_url":"http://news24h.allnews24h.com/FX54","display_url":"news24h.allnews24h.com/FX54","indices":[114,136]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874873248268300,"id_str":"505874873248268288","text":"@Take3carnifex \u305D\u308C\u306F\u5927\u5909\uFF01\u4E00\u5927\u4E8B\uFF01\u547D\u306B\u95A2\u308F\u308A\u307E\u3059\uFF01\n\u662F\u975E\u3046\u3061\u306B\u53D7\u8A3A\u3057\u3066\u4E0B\u3055\u3044\uFF01","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":505874353716600800,"in_reply_to_status_id_str":"505874353716600832","in_reply_to_user_id":535179785,"in_reply_to_user_id_str":"535179785","in_reply_to_screen_name":"Take3carnifex","user":{"id":226897125,"id_str":"226897125","name":"\u3072\u304B\u308A\uFF20hack","screen_name":"hikari_thirteen","location":"","description":"hack\u3068\u3044\u3046\u30D0\u30F3\u30C9\u3067\u3001\u30AE\u30BF\u30FC\u3092\u5F3E\u3044\u3066\u3044\u307E\u3059\u3002 \u30E2\u30F3\u30CF\u30F3\u3068\u30DD\u30B1\u30E2\u30F3\u304C\u597D\u304D\u3002 \nSPRING WATER \u30EA\u30FC\u30C9\u30AE\u30BF\u30FC(\u30D8\u30EB\u30D7)\nROCK OUT \u30EC\u30AE\u30E5\u30E9\u30FCDJ","url":"http://t.co/SQLZnvjVxB","entities":{"url":{"urls":[{"url":"http://t.co/SQLZnvjVxB","expanded_url":"http://s.ameblo.jp/hikarihikarimay","display_url":"s.ameblo.jp/hikarihikarimay","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":348,"listed_count":3,"created_at":"Wed Dec 15 10:51:51 +0000 2010","favourites_count":33,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":3293,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http://abs.twimg.com/images/themes/theme14/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme14/bg.gif","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000504584690/8ccba98eda8c0fd1d15a74e401f621d1_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/226897125/1385551752","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"Take3carnifex","name":"Take3","id":535179785,"id_str":"535179785","indices":[0,14]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:03 +0000 2014","id":505874873223110660,"id_str":"505874873223110656","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u4ECA\u3069\u304D\u5973\u5B50\u9AD8\u751F\u306E\u8B0Ew","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744236873,"id_str":"2744236873","name":"\u4ECA\u3069\u304D\u5973\u5B50\u9AD8\u751F\u306E\u8B0Ew","screen_name":"imadokijoshiko","location":"","description":"\u601D\u308F\u305A\u8033\u3092\u7591\u3046\u7537\u6027\u306E\u65B9\u306E\u5922\u3092\u58CA\u3057\u3066\u3057\u307E\u3046\u3001\r\n\u5973\u5B50\u9AD8\u751F\u9054\u306E\u30C7\u30A3\u30FC\u30D7\u306A\u4E16\u754C\u3092\u898B\u3066\u304F\u3060\u3055\u3044\u2606 \r\n\u304A\u3082\u3057\u308D\u3044\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":79,"friends_count":973,"listed_count":0,"created_at":"Tue Aug 19 07:06:47 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":354,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501627015980535808/avWBgkDh_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744236873/1408432455","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874872463925250,"id_str":"505874872463925248","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u79C1\u306E\u7406\u60F3\u306E\u7537\u6027\u50CF","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2761782601,"id_str":"2761782601","name":"\u79C1\u306E\u7406\u60F3\u306E\u7537\u6027\u50CF","screen_name":"risou_dansei","location":"","description":"\u3053\u3093\u306A\u7537\u6027\u2665 \u307B\u3093\u3068\u306B\u3044\u308B\u306E\u304B\u3057\u3089!? \r\n\u300C\u3044\u305F\u3089\u3044\u3044\u306E\u306B\u306A\u3041\u300D\u3063\u3066\u3044\u3046\u7406\u60F3\u306E\u7537\u6027\u50CF\u3092\u3092\u3001\u79C1\u76EE\u7DDA\u3067\u3064\u3076\u3084\u304D\u307E\u3059\u3002 \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u4EBA\u306F RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":69,"friends_count":974,"listed_count":0,"created_at":"Sun Aug 24 08:03:32 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":208,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503452833719410688/tFU509Yk_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2761782601/1408867519","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874871713157100,"id_str":"505874871713157120","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u6FC0\u30A2\u30C4\u26056\u79D2\u52D5\u753B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2725690658,"id_str":"2725690658","name":"\u6FC0\u30A2\u30C4\u26056\u79D2\u52D5\u753B","screen_name":"gekiatu_6byou","location":"","description":"\u8A71\u984C\u306E\uFF16\u79D2\u52D5\u753B\uFF01 \r\n\u601D\u308F\u305A\u300C\u307B\u3093\u3068\u304B\u3088\u3063\u300D\u3066\u30C4\u30C3\u30B3\u3093\u3067\u3057\u307E\u3046\u5185\u5BB9\u306E\u30AA\u30F3\u30D1\u30EC\u30FC\u30C9\uFF01 \r\n\u304A\u3082\u3057\u308D\u304B\u3063\u305F\u3089\u3001\u662F\u975E RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":195,"friends_count":494,"listed_count":0,"created_at":"Tue Aug 12 08:17:29 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":477,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/499107997444886528/3rl6FrIk_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2725690658/1407832963","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874871616671740,"id_str":"505874871616671744","text":"\u7206\u7B11\uFF57\uFF57\u73CD\u89E3\u7B54\u96C6\uFF01\n\u5148\u751F\u306E\u30C4\u30E1\u306E\u7518\u3055\u3068\u751F\u5F92\u306E\u30BB\u30F3\u30B9\u3092\u611F\u3058\u308B\u4E00\u554F\u4E00\u7B54\u3060\u3068FB\u3067\u3082\u8A71\u984C\uFF01\uFF01\n\u3046\u3069\u3093\u5929\u4E0B\u4E00\u6C7A\u5B9A\u6226\u30A6\u30A3\u30F3\u30C9\u30A6\u30BA9\u4E09\u91CD\u9AD8\u6821\u7AF9\u5185\u7531\u6075\u30A2\u30CA\u82B1\u706B\u4FDD\u967A\nhttp://t.co/jRWJt8IrSB http://t.co/okrAoxSbt0","source":"\u7B11\u3048\u308B\u535A\u7269\u9928","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2748747362,"id_str":"2748747362","name":"\u7B11\u3048\u308B\u535A\u7269\u9928","screen_name":"waraeru_kan","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":10,"listed_count":0,"created_at":"Wed Aug 20 11:11:04 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15137,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png","profile_image_url_https":"https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/jRWJt8IrSB","expanded_url":"http://bit.ly/1qBa1nl","display_url":"bit.ly/1qBa1nl","indices":[75,97]}],"user_mentions":[],"media":[{"id":505874871344066560,"id_str":"505874871344066560","indices":[98,120],"media_url":"http://pbs.twimg.com/media/BwU6g-dCcAALxAW.png","media_url_https":"https://pbs.twimg.com/media/BwU6g-dCcAALxAW.png","url":"http://t.co/okrAoxSbt0","display_url":"pic.twitter.com/okrAoxSbt0","expanded_url":"http://twitter.com/waraeru_kan/status/505874871616671744/photo/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":750,"resize":"fit"},"medium":{"w":600,"h":750,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874871268540400,"id_str":"505874871268540416","text":"@nasan_arai \n\u540D\u524D\u2192\u306A\u30FC\u3055\u3093\n\u7B2C\u4E00\u5370\u8C61\u2192\u8AB0\u3002(\u00B4\uFF65_\uFF65`)\n\u4ECA\u306E\u5370\u8C61\u2192\u308C\u3044\u3089\u2661\nLINE\u4EA4\u63DB\u3067\u304D\u308B\uFF1F\u2192\u3057\u3066\u308B(\uFF62\uFF65\u03C9\uFF65)\uFF62\n\u597D\u304D\u306A\u3068\u3053\u308D\u2192\u53EF\u611B\u3044\u512A\u3057\u3044\u512A\u3057\u3044\u512A\u3057\u3044\n\u6700\u5F8C\u306B\u4E00\u8A00\u2192\u306A\u30FC\u3055\u3093\u597D\u304D\u301C(\u00B4\uFF65_\uFF65`)\u2661GEM\u73FE\u5834\u304A\u3044\u3067\u306D(\u00B4\uFF65_\uFF65`)\u2661\n\n#\u3075\u3041\u307C\u3057\u305F\u4EBA\u306B\u3084\u308B","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1717603286,"in_reply_to_user_id_str":"1717603286","in_reply_to_screen_name":"nasan_arai","user":{"id":2417626784,"id_str":"2417626784","name":"\u2729.\u3086\u304D\u0B18(*\u00B4\uA4B3`)","screen_name":"Ymaaya_gem","location":"","description":"\u207D\u207D\u0669( \u1416 )\u06F6\u207E\u207E \u2764\uFE0E \u6B66 \u7530 \u821E \u5F69 \u2764\uFE0E \u208D\u208D\u0669( \u141B )\u06F6\u208E\u208E","url":"http://t.co/wR0Qb76TbB","entities":{"url":{"urls":[{"url":"http://t.co/wR0Qb76TbB","expanded_url":"http://twpf.jp/Ymaaya_gem","display_url":"twpf.jp/Ymaaya_gem","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":198,"friends_count":245,"listed_count":1,"created_at":"Sat Mar 29 16:03:06 +0000 2014","favourites_count":3818,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8056,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/505516858816987136/4gFGjHzu_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2417626784/1407764793","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3075\u3041\u307C\u3057\u305F\u4EBA\u306B\u3084\u308B","indices":[128,138]}],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"nasan_arai","name":"\u306A\u30FC\u3055\u3093","id":1717603286,"id_str":"1717603286","indices":[0,11]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874871218225150,"id_str":"505874871218225152","text":"\"\u30BD\u30FC\u30C9\u30DE\u30B9\u30BF\u30FC\"\u5263\u8056\u30AB\u30DF\u30A4\u30BA\u30DF (CV:\u7DD1\u5DDD\u5149)-\u300C\u30BD\u30FC\u30C9\u30DE\u30B9\u30BF\u30FC\u300D\u306E\u30A2\u30B9\u30BF\u30EA\u30B9\u30AF\u6240\u6301\u8005\n\u7B2C\u4E00\u5E2B\u56E3\u56E3\u9577\u306B\u3057\u3066\u300C\u5263\u8056\u300D\u306E\u79F0\u53F7\u3092\u6301\u3064\u5263\u58EB\u3002\u30A4\u30C7\u30A2\u306E\u5263\u306E\u5E2B\u5320\u3002 \n\u6575\u5473\u65B9\u304B\u3089\u3082\u5C0A\u656C\u3055\u308C\u308B\u4E00\u6D41\u306E\u6B66\u4EBA\u3002","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1435517814,"id_str":"1435517814","name":"\u4FFA\u3001\u95A2\u4FC2\u306A\u3044\u3088\uFF1F","screen_name":"BDFF_LOVE","location":"\u30EB\u30AF\u30BB\u30F3\u30C0\u30EB\u30AFor\u30EA\u30F3\u30B0\u30A2\u30D9\u30EB\u3055\u3093\u306E\u96A3","description":"\u81EA\u5206\u306A\u308A\u306B\u751F\u304D\u308B\u4EBA\u3001\u6700\u5F8C\u307E\u3067\u3042\u304D\u3089\u3081\u306A\u3044\u306E\u3002\u3067\u3082\u3001\u30D5\u30A9\u30ED\u30FC\u3042\u308A\u304C\u3068\u3046\u2026\u3002@ringo_BDFFLOVE \u2190\u306F\u3001\u59B9\u3067\u3059\u3002\u6642\u3005\u3001\u4F1A\u8A71\u3057\u307E\u3059\u3002\u300C\u73FE\u5728BOT\u3067\u3001BDFF\u306E\u3053\u3068\u545F\u304F\u3088\uFF01\u300D\u591C\u306F\u3001\u5168\u6EC5\u3000\u300CBDFF\u30D7\u30EC\u30A4\u4E2D\u300D\u8A73\u3057\u304F\u306F\u3001\u30C4\u30A4\u30D7\u30ED\u307F\u3066\u304F\u3060\u3055\u3044\uFF01(\u7D76\u5BFE)","url":"http://t.co/5R4dzpbWX2","entities":{"url":{"urls":[{"url":"http://t.co/5R4dzpbWX2","expanded_url":"http://twpf.jp/BDFF_LOVE","display_url":"twpf.jp/BDFF_LOVE","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1066,"friends_count":1799,"listed_count":6,"created_at":"Fri May 17 12:33:23 +0000 2013","favourites_count":1431,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":true,"verified":false,"statuses_count":6333,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/505696320380612608/qvaxb_zx_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/1435517814/1409401948","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874871130136600,"id_str":"505874871130136576","text":"\u95C7\u300C\u30EA\u30F3\u3068\u4ED8\u304D\u5408\u3046\u306B\u5F53\u305F\u3063\u3066\u6B73\u306E\u5DEE\u4EE5\u5916\u306B\u3082\u3044\u308D\u3044\u308D\u58C1\u304C\u3042\u3063\u305F\u3093\u3060\u3088\u3002\u611B\u3057\u968A\u306E\u59A8\u5BB3\u3068\u304B\u98A8\u7D00\u53A8\u306E\u751F\u5F92\u4F1A\u9577\u3068\u304B\u2026\u300D\n\u4E00\u53F7\u300C\u30EA\u30F3\u3061\u3083\u3093\u3092\u6CE3\u304B\u305B\u305F\u3089\u30B7\u30E1\u308B\u304B\u3093\u306D\uFF01\u300D\n\u4E8C\u53F7\u300C\u30EA\u30F3\u3061\u3083\u3093\u306B\u3084\u307E\u3057\u3044\u4E8B\u3057\u305F\u3089\u00D7\u3059\u2026\u300D\n\u57F7\u884C\u90E8\u300C\u4E0D\u7D14\u306A\u4EA4\u969B\u306F\u50D5\u304C\u53D6\u308A\u7DE0\u307E\u308D\u3046\u3058\u3083\u306A\u3044\u304B\u2026\u300D\n\u95C7\u300C\uFF08\u6D88\u3055\u308C\u308B\uFF09\u300D","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386208737,"id_str":"2386208737","name":"\u95C7\u672A\u6765Bot","screen_name":"StxRinFbot","location":"DIVA\u30EB\u30FC\u30E0","description":"ProjectDIVA\u306E\u30E2\u30B8\u30E5\u30FC\u30EB\u30FB\u30B9\u30C8\u30EC\u30F3\u30B8\u30C0\u30FC\u30AF\u00D7\u93E1\u97F3\u30EA\u30F3FutureStyle\u306E\u81EA\u5DF1\u6E80\u8DB3\u975E\u516C\u5F0FBot\u3000\u30DE\u30BB\u30EC\u30F3\u4ED5\u69D8\u3002CP\u8981\u7D20\u3042\u308A\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":2,"listed_count":0,"created_at":"Thu Mar 13 02:58:09 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4876,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/443948925351755776/6rmljL5C_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2386208737/1396259004","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874870933016600,"id_str":"505874870933016576","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u7D76\u54C1!!\u30B9\u30A4\u30FC\u30C4\u5929\u56FD","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2725681663,"id_str":"2725681663","name":"\u7D76\u54C1!!\u30B9\u30A4\u30FC\u30C4\u5929\u56FD","screen_name":"suitestengoku","location":"","description":"\u7F8E\u5473\u3057\u305D\u3046\u306A\u30B9\u30A4\u30FC\u30C4\u3063\u3066\u3001\u898B\u3066\u308B\u3060\u3051\u3067\u5E78\u305B\u306A\u6C17\u5206\u306B\u306A\u308C\u307E\u3059\u306D\u266A\r\n\u305D\u3093\u306A\u7D20\u6575\u306A\u30B9\u30A4\u30FC\u30C4\u306B\u51FA\u4F1A\u3044\u305F\u3044\u3067\u3059\u3002\r\n\u98DF\u3079\u305F\u3044\u3068\u601D\u3063\u305F\u3089\u662F\u975E RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":401,"friends_count":1877,"listed_count":1,"created_at":"Tue Aug 12 07:43:52 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":554,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/499099533507178496/g5dNpArt_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2725681663/1407829743","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874870148669440,"id_str":"505874870148669440","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u96FB\u8ECA\u53B3\u7981!!\u304A\u3082\u3057\u308D\u8A71","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2699667800,"id_str":"2699667800","name":"\u96FB\u8ECA\u53B3\u7981!!\u304A\u3082\u3057\u308D\u8A71w","screen_name":"dengeki_omoro","location":"","description":"\u65E5\u5E38\u306E\u30AA\u30E2\u30B7\u30ED\u304F\u3066\u7B11\u3048\u308B\u5834\u9762\u3092\u63A2\u3057\u307E\u3059\u266A\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":461,"friends_count":1919,"listed_count":0,"created_at":"Sat Aug 02 02:16:32 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":728,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495400387961036800/BBMb_hcG_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2699667800/1406947654","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874869339189250,"id_str":"505874869339189249","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u7B11\u3048\u308Bww\u30E9\u30F3\u30AD\u30F3\u30B02","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2695745652,"id_str":"2695745652","name":"\u7B11\u3048\u308Bww\u30E9\u30F3\u30AD\u30F3\u30B0","screen_name":"wara_runk","location":"","description":"\u77E5\u3063\u3066\u308B\u3068\u4F7F\u3048\u308B\u30E9\u30F3\u30AD\u30F3\u30B0\u3092\u63A2\u305D\u3046\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":314,"friends_count":1943,"listed_count":1,"created_at":"Thu Jul 31 13:51:57 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":737,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/494844659856728064/xBQfnm5J_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2695745652/1406815103","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:02 +0000 2014","id":505874868533854200,"id_str":"505874868533854209","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30B9\u30CB\u30FC\u30AB\u30FC\u5927\u597D\u304D\u2605\u56F3\u9451","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2707963890,"id_str":"2707963890","name":"\u30B9\u30CB\u30FC\u30AB\u30FC\u5927\u597D\u304D\u2605\u56F3\u9451","screen_name":"sunikar_daisuki","location":"","description":"\u30B9\u30CB\u30FC\u30AB\u30FC\u597D\u304D\u3092\u898B\u3064\u3051\u3066\u4EF2\u9593\u306B\u306A\u308D\u3046\u266A\r\n\u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":394,"friends_count":1891,"listed_count":0,"created_at":"Tue Aug 05 01:54:28 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":642,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496474952631996416/f0C_u3_u_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2707963890/1407203869","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"zh"},"created_at":"Sun Aug 31 00:29:01 +0000 2014","id":505874867997380600,"id_str":"505874867997380608","text":"\"@BelloTexto: \u00BFQuieres ser feliz? \n\u4E00\"No stalkees\" \n\u4E00\"No stalkees\" \n\u4E00\"No stalkees\" \n\u4E00\"No stalkees\" \n\u4E00\"No stalkees\" \n\u4E00\"No stalkees\".\"","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2249378935,"id_str":"2249378935","name":"Maggie Becerril ","screen_name":"maggdesie","location":"","description":"cambiando la vida de las personas.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":391,"listed_count":0,"created_at":"Mon Dec 16 21:56:49 +0000 2013","favourites_count":314,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1657,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/505093371665604608/K0x_LV2y_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2249378935/1409258479","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"BelloTexto","name":"Indirectas... \u2709","id":833083404,"id_str":"833083404","indices":[1,12]}]},"favorited":false,"retweeted":false,"lang":"zh"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:01 +0000 2014","id":505874867720183800,"id_str":"505874867720183808","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30B6\u30FB\u7570\u6027\u306E\u88CF\u306E\u9854","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719746578,"id_str":"2719746578","name":"\u30B6\u30FB\u7570\u6027\u306E\u88CF\u306E\u9854","screen_name":"iseiuragao","location":"","description":"\u7570\u6027\u306B\u3064\u3044\u3066\u5C11\u3057\u5B66\u3076\u3053\u3068\u3067\u3001\u5FC5\u7136\u7684\u306B\u30E2\u30C6\u308B\u3088\u3046\u306B\u306A\u308B\uFF01\uFF1F\u3000\u76F8\u624B\u3092\u7406\u89E3\u3059\u308B\u3053\u3068\u3067\u898B\u3048\u3066\u304F\u308B\u3082\u306E\u300C\u305D\u308C\u306F\u30FB\u30FB\u30FB\u25CF\u25CF\u300D\u3000\u3044\u3044\u5185\u5BB9\u3060\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u3082\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":238,"friends_count":1922,"listed_count":0,"created_at":"Sat Aug 09 17:18:43 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":532,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/498157077726900224/tW8q4di__normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2719746578/1407604947","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:01 +0000 2014","id":505874866910687200,"id_str":"505874866910687233","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u8D85w\u7F8E\u5973\u2606\u30A2\u30EB\u30D0\u30E0","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744054334,"id_str":"2744054334","name":"\u8D85w\u7F8E\u5973\u2606\u30A2\u30EB\u30D0\u30E0","screen_name":"bijyoalbum","location":"","description":"\u300C\u304A\u304A\uFF5E\u3063\uFF01\u3044\u3044\u306D\uFF5E\u300D\u3063\u3066\u3001\u601D\u308F\u305A\u8A00\u3063\u3066\u3057\u307E\u3046\u3001\u7F8E\u5973\u3092\u898B\u3064\u3051\u307E\u3059\u2606 \r\n\u30BF\u30A4\u30D7\u3060\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":966,"listed_count":0,"created_at":"Tue Aug 19 05:36:48 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":352,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501604413312491520/GP66eKWr_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744054334/1408426814","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:01 +0000 2014","id":505874866105376800,"id_str":"505874866105376769","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u7537\u306B\u898B\u305B\u306A\u3044\u5973\u5B50\u306E\u88CF\u751F\u614B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744261238,"id_str":"2744261238","name":"\u7537\u306B\u898B\u305B\u306A\u3044\u5973\u5B50\u306E\u88CF\u751F\u614B","screen_name":"jyoshiuraseitai","location":"","description":"\u7537\u306E\u77E5\u3089\u306A\u3044\u5973\u5B50\u306A\u3089\u3067\u306F\u306E\u3042\u308B\u3042\u308B\u2606 \r\n\u305D\u3093\u306A\u751F\u3005\u3057\u3044\u5973\u5B50\u306E\u751F\u614B\u3092\u3064\u3076\u3084\u304D\u307E\u3059\u3002 \r\n\u308F\u304B\u308B\uFF5E\u3063\u3066\u4EBA\u306F RT & \u30D5\u30A9\u30ED\u30FC\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":203,"friends_count":967,"listed_count":0,"created_at":"Tue Aug 19 08:01:28 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":348,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501641354804346880/Uh1-n1LD_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744261238/1408435630","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:01 +0000 2014","id":505874865354584060,"id_str":"505874865354584064","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u9A5A\u304D\u306E\u52D5\u7269\u305F\u3061\u306E\u751F\u614B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2759403146,"id_str":"2759403146","name":"\u9A5A\u304D\u306E\u52D5\u7269\u305F\u3061\u306E\u751F\u614B","screen_name":"soubutu_seitai","location":"","description":"\u300C\u304A\u304A\uFF5E\u3063\u300D\u3068 \u8A00\u308F\u308C\u308B\u3088\u3046\u306A\u3001\u52D5\u7269\u306E\u751F\u614B\u3092\u30C4\u30A4\u30FC\u30C8\u3057\u307E\u3059\u266A \r\n\u77E5\u3063\u3066\u3044\u308B\u3068\u3001\u3042\u306A\u305F\u3082\u4EBA\u6C17\u8005\u306B!? \r\n\u304A\u3082\u3057\u308D\u304B\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u3092\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":954,"listed_count":0,"created_at":"Sat Aug 23 16:39:31 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":219,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503220468128567296/Z8mGDIBS_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2759403146/1408812130","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:01 +0000 2014","id":505874864603820000,"id_str":"505874864603820032","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30E2\u30C6\u5973\u5B50\u2605\u30D5\u30A1\u30B7\u30E7\u30F3\u306E\u79D8\u5BC6","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2706659820,"id_str":"2706659820","name":"\u30E2\u30C6\u5973\u5B50\u2605\u30D5\u30A1\u30B7\u30E7\u30F3\u306E\u79D8\u5BC6","screen_name":"mote_woman","location":"","description":"\u30AA\u30B7\u30E3\u30EC\u304B\u308F\u3044\u3044\u2665\u30E2\u30C6\u5EA6UP\u306E\u6CE8\u76EE\u30A2\u30A4\u30C6\u30E0\u3092\u898B\u3064\u3051\u307E\u3059\u3002\r\n\u6C17\u306B\u5165\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":217,"friends_count":1806,"listed_count":0,"created_at":"Mon Aug 04 14:30:24 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":682,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496303370936668161/s7xP8rTy_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2706659820/1407163059","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874863874007040,"id_str":"505874863874007040","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u7537\u5973\u306E\u9055\u3044\u3092\u89E3\u660E\u3059\u308B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2761896468,"id_str":"2761896468","name":"\u7537\u5973\u306E\u9055\u3044\u3092\u89E3\u660E\u3059\u308B","screen_name":"danjyonotigai1","location":"","description":"\u610F\u5916\u3068\u7406\u89E3\u3067\u304D\u3066\u3044\u306A\u3044\u7537\u5973\u305D\u308C\u305E\u308C\u306E\u4E8B\u60C5\u3002 \r\n\u300C\u3048\u3063\u3000\u30DE\u30B8\u3067!?\u300D\u3068\u9A5A\u304F\u3088\u3046\u306A\u3001\u7537\u5973\u306E\u7FD2\u6027\u3092\u3064\u3076\u3084\u304D\u307E\u3059\u266A \u305F\u3081\u306B\u306A\u3063\u305F\u3089\u3001\u662F\u975E RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":992,"listed_count":0,"created_at":"Sun Aug 24 09:47:44 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":237,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503479057380413441/zDLu5Z9o_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2761896468/1408873803","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874862900924400,"id_str":"505874862900924416","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u795E\u30EC\u30D9\u30EB\u2605\u6975\u9650\u306E\u767A\u60F3","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744950735,"id_str":"2744950735","name":"\u795E\u30EC\u30D9\u30EB\u2605\u6975\u9650\u306E\u767A\u60F3","screen_name":"kamihassou","location":"","description":"\u898B\u3066\u3044\u308B\u3060\u3051\u3067\u3001\u672C\u6C17\u304C\u30D3\u30B7\u30D0\u30B7\u4F1D\u308F\u3063\u3066\u304D\u307E\u3059\uFF01 \r\n\u4EBA\u751F\u306E\u30D2\u30F3\u30C8\u306B\u306A\u308B\u3088\u3046\u306A\u3001\u305D\u3093\u306A\u7A76\u6975\u306E\u767A\u60F3\u3092\u96C6\u3081\u3066\u3044\u307E\u3059\u3002 \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":84,"friends_count":992,"listed_count":0,"created_at":"Tue Aug 19 13:36:05 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":343,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501725053189226496/xZNOTYz2_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744950735/1408455571","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874862397591550,"id_str":"505874862397591552","text":"@kaoritoxx \u305D\u3046\u3088\uFF01\u3042\u305F\u3057\u306F\u305D\u3046\u601D\u3046\u3088\u3046\u306B\u3057\u3066\u304A\u308B\u3002\u3044\u307E\u8077\u5834\u4E00\u3084\u3051\u3068\u308B\u6C17\u304C\u3059\u308B(\u00B0_\u00B0)\uFF01\u6E80\u55AB\u5E78\u305B\u713C\u3051\uFF01\uFF01w\u3042\u30FC\u3001\u306A\u308B\u307B\u3069\u306D\uFF01\u6BCE\u56DE\u305D\u3046\u3060\u3088\u306D\uFF01\u30C6\u30A3\u30A2\u30E9\u3061\u3083\u3093\u307F\u306B\u3044\u3063\u3066\u308B\u3082\u3093\u306D\u2661\u4E94\u6708\u3068\u4E5D\u6708\u6050\u308D\u3057\u3044\u3001\u3001\u3001\n\u30CF\u30EA\u30DD\u30BF\u30A8\u30EA\u30A2\u306F\u3044\u3063\u305F\uFF1F\uFF1F","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":505838547308277760,"in_reply_to_status_id_str":"505838547308277761","in_reply_to_user_id":796000214,"in_reply_to_user_id_str":"796000214","in_reply_to_screen_name":"kaoritoxx","user":{"id":2256249487,"id_str":"2256249487","name":"\u306F\u3042\u3061\u3083\u3093@\u6D77\u8CCA\u540C\u76DF\u4E2D","screen_name":"onepiece_24","location":"\u3069\u3048\u3059\u3048\u308D\u3049\u305F\u3093\u306E\u52A9\u624B\u517C\u306D\u59B9(\u9858\u671B)","description":"ONE PIECE\u611B\u3057\u3059\u304E\u3066\u4ECA\u5E74\uFF12\uFF13\u3061\u3083\u3044(\u6B74\uFF11\uFF14\u5E74\u76EE)\u30BE\u30ED\u69D8\u306B\u4E00\u9014\u3060\u3063\u305F\u306E\u306B\u30ED\u30FC\u3001\u3053\u306E\u3084\u308D\u30FC\u3002\u30ED\u30D3\u30F3\u3061\u3083\u3093\u304C\u5E78\u305B\u306B\u306A\u308C\u3070\u3044\u3044\u3002\u30EB\u30D5\u30A3\u306F\u7121\u6761\u4EF6\u306B\u3059\u304D\u3002\u30BE\u30ED\u30D3\u30F3\u3001\u30ED\u30FC\u30ED\u30D3\u3001\u30EB\u30ED\u30D3\u2661usj\u3001\u58F0\u512A\u3055\u3093\u3001\u30B3\u30CA\u30F3\u3001\u9032\u6483\u3001\u30AF\u30EC\u3057\u3093\u3001H x H\u3082\u597D\u304D\u2669","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":415,"friends_count":384,"listed_count":3,"created_at":"Sat Dec 21 09:37:25 +0000 2013","favourites_count":1603,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9636,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501686340564418561/hMQFN4vD_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2256249487/1399987924","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"kaoritoxx","name":"\u304B\u304A\u3061\u3083\u3093","id":796000214,"id_str":"796000214","indices":[0,10]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874861973991400,"id_str":"505874861973991424","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u604B\u611B\u4ED9\u4EBA","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2698885082,"id_str":"2698885082","name":"\u604B\u611B\u4ED9\u4EBA","screen_name":"renai_sennin","location":"","description":"\u8C4A\u5BCC\u3067\u30B9\u30C6\u30AD\u306A\u604B\u611B\u7D4C\u9A13\u3092\u3001\u30B7\u30A7\u30A2\u3057\u307E\u3057\u3087\u3046\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":618,"friends_count":1847,"listed_count":1,"created_at":"Fri Aug 01 18:09:38 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":726,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495272204641132544/GNA18aOg_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2698885082/1406917096","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874861881700350,"id_str":"505874861881700353","text":"@itsukibot_ \u4E00\u7A00\u306E\u4FFA\u306E\u30BD\u30FC\u30BB\u30FC\u30B8\u3092\u30DA\u30ED\u30DA\u30ED\u3059\u308B\u97F3\u306F\u30C7\u30AB\u30A4","source":"jigtwi","truncated":false,"in_reply_to_status_id":505871017428795400,"in_reply_to_status_id_str":"505871017428795392","in_reply_to_user_id":141170845,"in_reply_to_user_id_str":"141170845","in_reply_to_screen_name":"itsukibot_","user":{"id":2184752048,"id_str":"2184752048","name":"\u30A2\u30F3\u30C9\u30FC","screen_name":"55dakedayo","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":24,"listed_count":0,"created_at":"Sat Nov 09 17:42:22 +0000 2013","favourites_count":37249,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":21070,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png","profile_image_url_https":"https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"itsukibot_","name":"\u524D\u7530\u4E00\u7A00","id":141170845,"id_str":"141170845","indices":[0,11]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874861185437700,"id_str":"505874861185437697","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u3042\u306E\u4F1D\u8AAC\u306E\u540D\u30C9\u30E9\u30DE\uFF06\u540D\u5834\u9762","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2706951979,"id_str":"2706951979","name":"\u3042\u306E\u4F1D\u8AAC\u306E\u540D\u30C9\u30E9\u30DE\uFF06\u540D\u5834\u9762","screen_name":"densetunodorama","location":"","description":"\u8AB0\u306B\u3067\u3082\u8A18\u61B6\u306B\u6B8B\u308B\u3001\u30C9\u30E9\u30DE\u306E\u540D\u5834\u9762\u304C\u3042\u308B\u3068\u601D\u3044\u307E\u3059\u3002\u305D\u3093\u306A\u611F\u52D5\u306E\u30B9\u30C8\u30FC\u30EA\u30FC\u3092\u3001\u3082\u3046\u4E00\u5EA6\u308F\u304B\u3061\u3042\u3044\u305F\u3044\u3067\u3059\u3002\r\n\u300C\u3053\u308C\u77E5\u3063\u3066\u308B\uFF01\u300D\u3068\u304B\u300C\u3042\uFF5E\u61D0\u304B\u3057\u3044\u300D\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":300,"friends_count":1886,"listed_count":0,"created_at":"Mon Aug 04 16:38:25 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":694,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/496335892152209408/fKzb8Nv3_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2706951979/1407170704","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:29:00 +0000 2014","id":505874860447260700,"id_str":"505874860447260672","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30DE\u30B8\u3067\u98DF\u3079\u305F\u3044\u2665\u30B1\u30FC\u30AD\u7279\u96C6","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2724328646,"id_str":"2724328646","name":"\u30DE\u30B8\u3067\u98DF\u3079\u305F\u3044\u2665\u30B1\u30FC\u30AD\u7279\u96C6","screen_name":"tabetaicake1","location":"","description":"\u5973\u6027\u306E\u76EE\u7DDA\u304B\u3089\u898B\u305F\u3001\u7F8E\u5473\u3057\u305D\u3046\u306A\u30B1\u30FC\u30AD\u3092\u63A2\u3057\u6C42\u3081\u3066\u3044\u307E\u3059\u3002\r\n\u898B\u3066\u308B\u3060\u3051\u3067\u3001\u3042\u308C\u3082\u30B3\u30EC\u3082\u98DF\u3079\u305F\u304F\u306A\u3063\u3061\u3083\u3046\u266A\r\n\u7F8E\u5473\u3057\u305D\u3046\u3060\u3068\u601D\u3063\u305F\u3089\u3001\u662F\u975E RT \uFF06 \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":1907,"listed_count":0,"created_at":"Mon Aug 11 17:15:22 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":493,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498881289844293632/DAa9No9M_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2724328646/1407777704","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:59 +0000 2014","id":505874859662925800,"id_str":"505874859662925824","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30A2\u30C7\u30A3\u30C0\u30B9\u2605\u30DE\u30CB\u30A2","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2704003662,"id_str":"2704003662","name":"\u30A2\u30C7\u30A3\u30C0\u30B9\u2605\u30DE\u30CB\u30A2","screen_name":"adi_mania11","location":"","description":"\u7D20\u6575\u306A\u30A2\u30C7\u30A3\u30C0\u30B9\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u898B\u3064\u3051\u305F\u3044\u3067\u3059\u266A\r\n\u6C17\u306B\u5165\u3063\u3066\u3082\u3089\u3048\u305F\u3089\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067 \u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":1851,"listed_count":0,"created_at":"Sun Aug 03 12:26:37 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":734,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495911561781727235/06QAMVrR_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2704003662/1407069046","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:59 +0000 2014","id":505874858920513540,"id_str":"505874858920513537","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u840C\u3048\u30DA\u30C3\u30C8\u5927\u597D\u304D","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719061228,"id_str":"2719061228","name":"\u840C\u3048\u30DA\u30C3\u30C8\u5927\u597D\u304D","screen_name":"moe_pet1","location":"","description":"\u304B\u308F\u3044\u3044\u30DA\u30C3\u30C8\u3092\u898B\u308B\u306E\u304C\u8DA3\u5473\u3067\u3059\u2665\u305D\u3093\u306A\u79C1\u3068\u4E00\u7DD2\u306B\u3044\u3084\u3055\u308C\u305F\u3044\u4EBA\u3044\u307E\u305B\u3093\u304B\uFF1F\u304B\u308F\u3044\u3044\u3068\u601D\u3063\u305F\u3089 RT & \u30D5\u30A9\u30ED\u30FC\u3082\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":1812,"listed_count":0,"created_at":"Sat Aug 09 10:20:25 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":632,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498051549537386496/QizThq7N_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2719061228/1407581287","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:59 +0000 2014","id":505874858115219460,"id_str":"505874858115219456","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u604B\u611B\u306E\u6559\u79D1\u66F8\u3000","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744344514,"id_str":"2744344514","name":"\u604B\u611B\u306E\u6559\u79D1\u66F8","screen_name":"renaikyoukasyo","location":"","description":"\u3082\u3063\u3068\u65E9\u304F\u77E5\u3063\u3068\u304F\u3079\u304D\u3060\u3063\u305F\uFF5E\uFF01\u77E5\u3063\u3066\u3044\u308C\u3070\u3082\u3063\u3068\u4E0A\u624B\u304F\u3044\u304F\u266A \r\n\u4ECA\u3059\u3050\u5F79\u7ACB\u3064\u604B\u611B\u306B\u3064\u3044\u3066\u306E\u96D1\u5B66\u3084\u30DE\u30E1\u77E5\u8B58\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u3002 \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":955,"listed_count":0,"created_at":"Tue Aug 19 08:32:45 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":346,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501655512018997248/7SznYGWi_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2744344514/1408439001","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:59 +0000 2014","id":505874857335074800,"id_str":"505874857335074816","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30AA\u30E2\u30ED\u3059\u304E\u308B\u2605\u5B66\u751F\u306E\u65E5\u5E38","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2699365116,"id_str":"2699365116","name":"\u30AA\u30E2\u30ED\u3059\u304E\u308B\u2605\u5B66\u751F\u306E\u65E5\u5E38","screen_name":"omorogakusei","location":"","description":"\u697D\u3057\u3059\u304E\u308B\u5B66\u751F\u306E\u65E5\u5E38\u3092\u63A2\u3057\u3066\u3044\u304D\u307E\u3059\u3002\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":289,"friends_count":1156,"listed_count":2,"created_at":"Fri Aug 01 23:35:18 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":770,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495353473886478336/S-4B_RVl_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2699365116/1406936481","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:59 +0000 2014","id":505874856605257700,"id_str":"505874856605257728","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u61A7\u308C\u306E\u2605\u30A4\u30F3\u30C6\u30EA\u30A2\u56F3\u9451","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2721907602,"id_str":"2721907602","name":"\u61A7\u308C\u306E\u2605\u30A4\u30F3\u30C6\u30EA\u30A2\u56F3\u9451","screen_name":"akogareinteria","location":"","description":"\u81EA\u5206\u306E\u4F4F\u3080\u90E8\u5C4B\u3082\u3053\u3093\u306A\u3075\u3046\u306B\u3057\u3066\u307F\u305F\u3044\u266A\u3000\r\n\u305D\u3093\u306A\u7D20\u6575\u306A\u30A4\u30F3\u30C6\u30EA\u30A2\u3092\u3001\u65E5\u3005\u63A2\u3057\u3066\u3044\u307E\u3059w\u3000\r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":298,"friends_count":1925,"listed_count":0,"created_at":"Sun Aug 10 15:59:13 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":540,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498499374423343105/Wi_izHvT_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2721907602/1407686543","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:59 +0000 2014","id":505874856089378800,"id_str":"505874856089378816","text":"\u5929\u51A5\u306E\u6A19 VI \u5BBF\u6028 PART1 / \u5C0F\u5DDD \u4E00\u6C34\nhttp://t.co/fXIgRt4ffH\n \n#\u30AD\u30F3\u30C9\u30EB #\u5929\u51A5\u306E\u6A19VI\u5BBF\u6028PART1","source":"waromett","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1953404612,"id_str":"1953404612","name":"\u308F\u308D\u3081\u3063\u3068","screen_name":"waromett","location":"","description":"\u305F\u306E\u3057\u3044\u3064\u3044\u30FC\u3068\u3057\u3087\u3046\u304B\u3044","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":16980,"friends_count":16983,"listed_count":18,"created_at":"Fri Oct 11 05:49:57 +0000 2013","favourites_count":3833,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":98655,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http://abs.twimg.com/images/themes/theme5/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme5/bg.gif","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000578908101/14c4744c7aa34b1f8bbd942b78e59385_normal.jpeg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30AD\u30F3\u30C9\u30EB","indices":[50,55]},{"text":"\u5929\u51A5\u306E\u6A19VI\u5BBF\u6028PART1","indices":[56,70]}],"symbols":[],"urls":[{"url":"http://t.co/fXIgRt4ffH","expanded_url":"http://j.mp/1kHBOym","display_url":"j.mp/1kHBOym","indices":[25,47]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"zh"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874855770599400,"id_str":"505874855770599425","text":"\u56DB\u5DDD\u76C6\u5730\u6C5F\u6DEE\u7B49\u5730\u5C06\u6709\u5F3A\u964D\u96E8 \u5F00\u5B66\u65E5\u591A\u5730\u5C06\u6709\u96E8: \u3000\u3000\u4E2D\u65B0\u7F518\u670831\u65E5\u7535 \u636E\u4E2D\u592E\u6C14\u8C61\u53F0\u6D88\u606F\uFF0C\u6C5F\u6DEE\u4E1C\u90E8\u3001\u56DB\u5DDD\u76C6\u5730\u4E1C\u5317\u90E8\u7B49\u5730\u4ECA\u5929(31\u65E5)\u53C8\u5C06\u8FCE\u6765\u4E00\u573A\u66B4\u96E8\u6216\u5927\u66B4\u96E8\u5929\u6C14\u3002\u660E\u59299\u67081\u65E5\uFF0C\u662F\u4E2D\u5C0F\u5B66\u751F\u5F00\u5B66\u7684\u65E5\u5B50\u3002\u9884\u8BA1\u660E\u5929\uFF0C\u5185\u8499\u53E4\u4E2D\u90E8\u3001... http://t.co/RNdqIHmTby","source":"twitterfeed","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402427654,"id_str":"402427654","name":"\u4E2D\u56FD\u65B0\u95FB","screen_name":"zhongwenxinwen","location":"","description":"\u4E2D\u56FD\u7684\u65B0\u95FB\uFF0C\u4E16\u754C\u7684\u65B0\u95FB\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2429,"friends_count":15,"listed_count":29,"created_at":"Tue Nov 01 01:56:43 +0000 2011","favourites_count":0,"utc_offset":-28800,"time_zone":"Alaska","geo_enabled":false,"verified":false,"statuses_count":84564,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http://abs.twimg.com/images/themes/theme6/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme6/bg.gif","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/2700523149/5597e347b2eb880425faef54287995f2_normal.jpeg","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/RNdqIHmTby","expanded_url":"http://bit.ly/1tOdNsI","display_url":"bit.ly/1tOdNsI","indices":[114,136]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874854877200400,"id_str":"505874854877200384","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"LDH \u2605\u5927\u597D\u304D\u5FDC\u63F4\u56E3","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2700961603,"id_str":"2700961603","name":"LDH \u2605\u5927\u597D\u304D\u5FDC\u63F4\u56E3","screen_name":"LDH_daisuki1","location":"","description":"LDH\u30D5\u30A1\u30F3\u306F\u3001\u5168\u54E1\u4EF2\u9593\u3067\u3059\u266A\r\n\u9762\u767D\u304B\u3063\u305F\u3089RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u307F\u306A\u3055\u3093\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":458,"friends_count":1895,"listed_count":0,"created_at":"Sat Aug 02 14:23:46 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":735,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/495578007298252800/FOZflgYu_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2700961603/1406989928","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874854147407900,"id_str":"505874854147407872","text":"RT @shiawaseomamori: \u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u2026","source":"\u30DE\u30B8!?\u6016\u3044\u30A2\u30CB\u30E1\u90FD\u5E02\u4F1D\u8AAC","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719489172,"id_str":"2719489172","name":"\u30DE\u30B8!?\u6016\u3044\u30A2\u30CB\u30E1\u90FD\u5E02\u4F1D\u8AAC","screen_name":"anime_toshiden1","location":"","description":"\u3042\u306A\u305F\u306E\u77E5\u3089\u306A\u3044\u3001\u6016\u3059\u304E\u308B\u30A2\u30CB\u30E1\u306E\u90FD\u5E02\u4F1D\u8AAC\u3092\u96C6\u3081\u3066\u3044\u307E\u3059\u3002\r\n\u300C\u3048\uFF5E\u77E5\u3089\u306A\u304B\u3063\u305F\u3088ww]\u300D\u3063\u3066\u4EBA\u306F RT & \u30D5\u30A9\u30ED\u30FC\u304A\u9858\u3044\u3057\u307E\u3059\u266A","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":377,"friends_count":1911,"listed_count":1,"created_at":"Sat Aug 09 14:41:15 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":536,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/498118027322208258/h7XOTTSi_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2719489172/1407595513","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:06 +0000 2014","id":505871615125491700,"id_str":"505871615125491712","text":"\u4E00\u306B\u6B62\u307E\u308B\u3068\u66F8\u3044\u3066\u3001\u6B63\u3057\u3044\u3068\u3044\u3046\u610F\u5473\u3060\u306A\u3093\u3066\u3001\u3053\u306E\u5E74\u306B\u306A\u308B\u307E\u3067\u77E5\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002 \u4EBA\u306F\u751F\u304D\u3066\u3044\u308B\u3068\u3001\u524D\u3078\u524D\u3078\u3068\u3044\u3046\u6C17\u6301\u3061\u3070\u304B\u308A\u6025\u3044\u3066\u3001\u3069\u3093\u3069\u3093\u5927\u5207\u306A\u3082\u306E\u3092\u7F6E\u304D\u53BB\u308A\u306B\u3057\u3066\u3044\u304F\u3082\u306E\u3067\u3057\u3087\u3046\u3002\u672C\u5F53\u306B\u6B63\u3057\u3044\u3053\u3068\u3068\u3044\u3046\u306E\u306F\u3001\u4E00\u756A\u521D\u3081\u306E\u5834\u6240\u306B\u3042\u308B\u306E\u304B\u3082\u3057\u308C\u307E\u305B\u3093\u3002 by\u795E\u69D8\u306E\u30AB\u30EB\u30C6\u3001\u590F\u5DDD\u8349\u4ECB","source":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745121514,"id_str":"2745121514","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","screen_name":"shiawaseomamori","location":"","description":"\u81EA\u5206\u304C\u5E78\u305B\u3060\u3068\u5468\u308A\u3082\u5E78\u305B\u306B\u3067\u304D\u308B\uFF01 \r\n\u305D\u3093\u306A\u4EBA\u751F\u3092\u7CBE\u4E00\u676F\u751F\u304D\u308B\u305F\u3081\u306B\u5FC5\u8981\u306A\u8A00\u8449\u3092\u304A\u5C4A\u3051\u3057\u307E\u3059\u266A \r\n\u3044\u3044\u306A\u3068\u601D\u3063\u305F\u3089 RT & \u76F8\u4E92\u30D5\u30A9\u30ED\u30FC\u3067\u3001\u304A\u9858\u3044\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":213,"friends_count":991,"listed_count":0,"created_at":"Tue Aug 19 14:45:19 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":349,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/501742437606244354/scXy81ZW_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2745121514/1408459730","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":58,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"shiawaseomamori","name":"\u5E78\u305B\u306E\u2606\u304A\u5B88\u308A","id":2745121514,"id_str":"2745121514","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874854134820860,"id_str":"505874854134820864","text":"@vesperia1985 \u304A\u306F\u3088\u30FC\uFF01\n\u4ECA\u65E5\u307E\u3067\u306A\u306E\u3067\u3059\u3088\u2026\uFF01\uFF01\u660E\u65E5\u4E00\u751F\u6765\u306A\u304F\u3066\u3044\u3044","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":505868030329364500,"in_reply_to_status_id_str":"505868030329364480","in_reply_to_user_id":2286548834,"in_reply_to_user_id_str":"2286548834","in_reply_to_screen_name":"vesperia1985","user":{"id":2389045190,"id_str":"2389045190","name":"\u308A\u3044\u3053","screen_name":"riiko_dq10","location":"","description":"\u30B5\u30DE\u30FC\u30A8\u30EB\u30D5\u3067\u3059\u3001\u308A\u3044\u3053\u3067\u3059\u3002\u3048\u308B\u304A\u304F\u3093\u30E9\u30D6\u3067\u3059\uFF01\u968F\u6642\u3075\u308C\u307C\u3057\u3085\u301C\u301C(\u3063\u02D8\u03C9\u02D8c )\uFF0A\u65E5\u5E38\u306E\u3069\u3046\u3067\u3082\u3044\u3044\u3053\u3068\u3082\u545F\u3044\u3066\u307E\u3059\u304C\u3088\u308D\u3057\u304F\u306D\u301C","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":67,"friends_count":69,"listed_count":0,"created_at":"Fri Mar 14 13:02:27 +0000 2014","favourites_count":120,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":324,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/503906346815610881/BfSrCoBr_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/2389045190/1409232058","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"vesperia1985","name":"\u30E6\u30FC\u30EA","id":2286548834,"id_str":"2286548834","indices":[0,13]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874853778685950,"id_str":"505874853778685952","text":"\u3010\u6620\u753B\u30D1\u30F3\u30D5\u30EC\u30C3\u30C8\u3011\u3000\u6C38\u9060\u306E\uFF10 \uFF08\u6C38\u9060\u306E\u30BC\u30ED\uFF09\u3000\u76E3\u7763\u3000\u5C71\u5D0E\u8CB4\u3000\u30AD\u30E3\u30B9\u30C8\u3000\u5CA1\u7530\u51C6\u4E00\u3001\u4E09\u6D66\u6625\u99AC\u3001\u4E95\u4E0A\u771F\u592E\u6771\u5B9D(2)11\u70B9\u306E\u65B0\u54C1\uFF0F\u4E2D\u53E4\u54C1\u3092\u898B\u308B: \uFFE5 500\u3088\u308A\n(\u3053\u306E\u5546\u54C1\u306E\u73FE\u5728\u306E\u30E9\u30F3\u30AF\u306B\u95A2\u3059\u308B\u6B63\u5F0F\u306A\u60C5\u5831\u306B\u3064\u3044\u3066\u306F\u3001\u30A2\u30FC\u30C8\u30D5\u30EC\u30FC\u30E0... http://t.co/4hbyB1rbQ7","source":"IFTTT","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1319883571,"id_str":"1319883571","name":"\u68EE\u6797\u6728\u5DE5\u5BB6\u5177\u88FD\u4F5C\u6240","screen_name":"Furniturewood","location":"\u6C96\u7E04","description":"\u5BB6\u5177\uFF08\u304B\u3050\u3001Furniture\uFF09\u306F\u3001\u5BB6\u8CA1\u9053\u5177\u306E\u3046\u3061\u5BB6\u306E\u4E2D\u306B\u636E\u3048\u7F6E\u3044\u3066\u5229\u7528\u3059\u308B\u6BD4\u8F03\u7684\u5927\u578B\u306E\u9053\u5177\u985E\u3001\u307E\u305F\u306F\u5143\u3005\u5BB6\u306B\u4F5C\u308A\u4ED8\u3051\u3089\u308C\u3066\u3044\u308B\u6BD4\u8F03\u7684\u5927\u578B\u306E\u9053\u5177\u985E\u3092\u3055\u3059\u3002\u306A\u304A\u3001\u65E5\u672C\u306E\u5EFA\u7BC9\u57FA\u6E96\u6CD5\u4E0A\u306F\u3001\u4F5C\u308A\u4ED8\u3051\u5BB6\u5177\u306F\u3001\u5EFA\u7BC9\u78BA\u8A8D\u53CA\u3073\u5B8C\u4E86\u691C\u67FB\u306E\u5BFE\u8C61\u3068\u306A\u308B\u304C\u3001\u5F8C\u304B\u3089\u7F6E\u304B\u308C\u308B\u3082\u306E\u306B\u3064\u3044\u3066\u306F\u5BFE\u8C61\u5916\u3067\u3042\u308B\u3002","url":"http://t.co/V4oyL0xtZk","entities":{"url":{"urls":[{"url":"http://t.co/V4oyL0xtZk","expanded_url":"http://astore.amazon.co.jp/furniturewood-22","display_url":"astore.amazon.co.jp/furniturewood-\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":677,"friends_count":743,"listed_count":1,"created_at":"Mon Apr 01 07:55:14 +0000 2013","favourites_count":0,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":17210,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3460466135/c67d9df9b760787b9ed284fe80b1dd31_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1319883571/1364804982","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/4hbyB1rbQ7","expanded_url":"http://ift.tt/1kT55bk","display_url":"ift.tt/1kT55bk","indices":[116,138]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874852754907140,"id_str":"505874852754907136","text":"RT @siranuga_hotoke: \u30B4\u30AD\u30D6\u30EA\u306F\u4E00\u4E16\u5E2F\u306B\u5E73\u5747\u3057\u3066480\u5339\u3044\u308B\u3002","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":413944345,"id_str":"413944345","name":"\u6CE5\u9154\u30A4\u30CA\u30D0\u30A6\u30A2\u30FC","screen_name":"Natade_co_co_21","location":"","description":"\u541B\u306E\u77B3\u306B\u3046\u3064\u308B\u50D5\u306B\u4E7E\u676F\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":298,"friends_count":300,"listed_count":4,"created_at":"Wed Nov 16 12:52:46 +0000 2011","favourites_count":3125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12237,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/378800000115928444/9bf5fa13385cc80bfeb097e51af9862a.jpeg","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/500849752351600640/lMQqIzYj_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/413944345/1403511193","profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Aug 30 23:24:23 +0000 2014","id":505858599411666940,"id_str":"505858599411666944","text":"\u30B4\u30AD\u30D6\u30EA\u306F\u4E00\u4E16\u5E2F\u306B\u5E73\u5747\u3057\u3066480\u5339\u3044\u308B\u3002","source":"twittbot.net","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2243896200,"id_str":"2243896200","name":"\u77E5\u3089\u306C\u304C\u4ECFbot","screen_name":"siranuga_hotoke","location":"\u5948\u826F\u30FB\u4EAC\u90FD\u8FBA\u308A","description":"\u77E5\u3089\u306C\u304C\u4ECF\u306A\u60C5\u5831\u3092\u304A\u4F1D\u3048\u3057\u307E\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3288,"friends_count":3482,"listed_count":7,"created_at":"Fri Dec 13 13:16:35 +0000 2013","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1570,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000866399372/ypy5NnPe_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/2243896200/1386997755","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[{"screen_name":"siranuga_hotoke","name":"\u77E5\u3089\u306C\u304C\u4ECFbot","id":2243896200,"id_str":"2243896200","indices":[3,19]}]},"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:58 +0000 2014","id":505874852603908100,"id_str":"505874852603908096","text":"RT @UARROW_Y: \u3088\u3046\u304B\u3044\u4F53\u64CD\u7B2C\u4E00\u3092\u8E0A\u308B\u56FD\u898B\u82F1 http://t.co/SXoYWH98as","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463035136,"id_str":"2463035136","name":"\u3084","screen_name":"yae45","location":"","description":"\u304D\u3082\u3061\u308F\u308B\u3044\u3053\u3068\u3064\u3076\u3084\u304F\u7528","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":30,"listed_count":0,"created_at":"Fri Apr 25 10:49:20 +0000 2014","favourites_count":827,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":390,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/505345820137234433/csFeRxPm_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:16:45 +0000 2014","id":505871779949051900,"id_str":"505871779949051904","text":"\u3088\u3046\u304B\u3044\u4F53\u64CD\u7B2C\u4E00\u3092\u8E0A\u308B\u56FD\u898B\u82F1 http://t.co/SXoYWH98as","source":"Twitter for Android","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261662588,"id_str":"1261662588","name":"\u3086\u3046\u77E2","screen_name":"UARROW_Y","location":"\u3064\u304F\u308A\u51FA\u305D\u3046\u56FD\u5F71\u306E\u6CE2 \u5E83\u3052\u3088\u3046\u56FD\u5F71\u306E\u8F2A","description":"HQ!! \u6210\u4EBA\u6E08\u8150\u5973\u5B50\u3002\u65E5\u5E38\u30C4\u30A4\u30FC\u30C8\u591A\u3044\u3067\u3059\u3002\u8D64\u8466\u4EAC\u6CBB\u5922\u8C5A\u30AF\u30BD\u30C4\u30A4\u542B\u307F\u307E\u3059\u6CE8\u610F\u3002\u30D5\u30A9\u30ED\u30FC\u3092\u304A\u8003\u3048\u306E\u969B\u306F\u30D7\u30ED\u30D5\u3054\u4E00\u8AAD\u304A\u9858\u3044\u81F4\u3057\u307E\u3059\u3002FRB\u304A\u6C17\u8EFD\u306B","url":"http://t.co/LFX2XOzb0l","entities":{"url":{"urls":[{"url":"http://t.co/LFX2XOzb0l","expanded_url":"http://twpf.jp/UARROW_Y","display_url":"twpf.jp/UARROW_Y","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":265,"friends_count":124,"listed_count":12,"created_at":"Tue Mar 12 10:42:17 +0000 2013","favourites_count":6762,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":55946,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/502095104618663937/IzuPYx3E_normal.png","profile_banner_url":"https://pbs.twimg.com/profile_banners/1261662588/1408618604","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":29,"favorite_count":54,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/SXoYWH98as","expanded_url":"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1","display_url":"pic.twitter.com/SXoYWH98as","indices":[15,37]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":29,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/SXoYWH98as","expanded_url":"http://twitter.com/UARROW_Y/status/505871779949051904/photo/1","display_url":"pic.twitter.com/SXoYWH98as","indices":[29,51]}],"user_mentions":[{"screen_name":"UARROW_Y","name":"\u3086\u3046\u77E2","id":1261662588,"id_str":"1261662588","indices":[3,12]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"zh"},"created_at":"Sun Aug 31 00:28:57 +0000 2014","id":505874848900341760,"id_str":"505874848900341760","text":"RT @fightcensorship: \u674E\u514B\u5F37\u7E3D\u7406\u7684\u81C9\u7DA0\u4E86\uFF01\u5728\u524D\u65E5\u5357\u4EAC\u9752\u5967\u6703\u9589\u5E55\u5F0F\uFF0C\u89C0\u773E\u5E2D\u4E0A\u4E00\u540D\u8CAA\u73A9\u97D3\u570B\u5C11\u5E74\u904B\u52D5\u54E1\uFF0C\u7ADF\u6597\u81BD\u7528\u6FC0\u5149\u7B46\u5C04\u5411\u4E2D\u570B\u7E3D\u7406\u674E\u514B\u5F37\u7684\u81C9\u3002http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8","source":"Twitter for iPhone","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":889332218,"id_str":"889332218","name":"\u6C11\u6B0A\u521D\u6B65","screen_name":"JoeyYoungkm","location":"km/cn","description":"\u7ECF\u5386\u4E86\u600E\u6837\u7684\u66F2\u6298\u624D\u4ECE\u8FFD\u6C42\u201C\u4E00\u81F4\u901A\u8FC7\u201D\u53D1\u5C55\u5230\u4ECA\u5929\u4EBA\u4EEC\u63A5\u53D7\u201C\u8FC7\u534A\u6570\u901A\u8FC7\u201D\uFF0C\u6B63\u662F\u4EBA\u4EEC\u8BA4\u8BC6\u5230\u5BF9\u201C\u4E00\u81F4\u201D\u751A\u81F3\u662F\u201C\u57FA\u672C\u4E00\u81F4\u201D\u7684\u8FFD\u6C42\u672C\u8EAB\u5C31\u4F1A\u53D8\u6210\u4E00\u79CD\u72EC\u88C1\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":46,"listed_count":0,"created_at":"Thu Oct 18 17:21:17 +0000 2012","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15707,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/378800000563062033/a7e8274752ce36a6cd5bad971ec7d416_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/889332218/1388896916","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"zh"},"created_at":"Sat Aug 30 23:56:27 +0000 2014","id":505866670356070400,"id_str":"505866670356070401","text":"\u674E\u514B\u5F37\u7E3D\u7406\u7684\u81C9\u7DA0\u4E86\uFF01\u5728\u524D\u65E5\u5357\u4EAC\u9752\u5967\u6703\u9589\u5E55\u5F0F\uFF0C\u89C0\u773E\u5E2D\u4E0A\u4E00\u540D\u8CAA\u73A9\u97D3\u570B\u5C11\u5E74\u904B\u52D5\u54E1\uFF0C\u7ADF\u6597\u81BD\u7528\u6FC0\u5149\u7B46\u5C04\u5411\u4E2D\u570B\u7E3D\u7406\u674E\u514B\u5F37\u7684\u81C9\u3002http://t.co/HLX9mHcQwe http://t.co/fVVOSML5s8","source":"Twitter Web Client","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67661086,"id_str":"67661086","name":"\u203B\u8303\u5F3A\u203B\u6CD5\u7279\u59D7\u745F\u5E0C\u84B2\u203B","screen_name":"fightcensorship","location":"Middle of Nowhere","description":"\u88AB\u4EBA\u6307\u8D23\u201C\u5C01\u5EFA\u201D\u3001\u201C\u843D\u540E\u201D\u3001\u201C\u4FDD\u5B88\u201D\u7684\u4EE3\u8868\uFF0C\u5F53\u4EE3\u7EA2\u536B\u5175\u653B\u51FB\u5BF9\u8C61\u3002\u81F4\u529B\u4E8E\u8A00\u8BBA\u81EA\u7531\uFF0C\u4EBA\u6743\uFF1B \u5021\u5BFC\u8D44\u8BAF\u516C\u5F00\uFF0C\u53CD\u5BF9\u7F51\u7EDC\u5C01\u9501\u3002\u65E2\u4E0D\u662F\u7CBE\u82F1\u5206\u5B50\uFF0C\u4E5F\u4E0D\u662F\u610F\u89C1\u9886\u8896\uFF0C\u672C\u63A8\u8A00\u8BBA\u4E0D\u4EE3\u8868\u4EFB\u4F55\u56FD\u5BB6\u3001\u515A\u6D3E\u548C\u7EC4\u7EC7\uFF0C\u4E5F\u4E0D\u6807\u699C\u4F1F\u5927\u3001\u5149\u8363\u548C\u6B63\u786E\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7143,"friends_count":779,"listed_count":94,"created_at":"Fri Aug 21 17:16:22 +0000 2009","favourites_count":364,"utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"verified":false,"statuses_count":16751,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/611138516/toeccqnahbpmr0sw9ybv.jpeg","profile_background_tile":true,"profile_image_url":"http://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/3253137427/3524557d21ef2c04871e985d4d136bdb_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/67661086/1385608347","profile_link_color":"ED1313","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/HLX9mHcQwe","expanded_url":"http://is.gd/H3OgTO","display_url":"is.gd/H3OgTO","indices":[57,79]}],"user_mentions":[],"media":[{"id":505866668485386240,"id_str":"505866668485386241","indices":[80,102],"media_url":"http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg","media_url_https":"https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg","url":"http://t.co/fVVOSML5s8","display_url":"pic.twitter.com/fVVOSML5s8","expanded_url":"http://twitter.com/fightcensorship/status/505866670356070401/photo/1","type":"photo","sizes":{"large":{"w":640,"h":554,"resize":"fit"},"medium":{"w":600,"h":519,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":294,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[{"url":"http://t.co/HLX9mHcQwe","expanded_url":"http://is.gd/H3OgTO","display_url":"is.gd/H3OgTO","indices":[78,100]}],"user_mentions":[{"screen_name":"fightcensorship","name":"\u203B\u8303\u5F3A\u203B\u6CD5\u7279\u59D7\u745F\u5E0C\u84B2\u203B","id":67661086,"id_str":"67661086","indices":[3,19]}],"media":[{"id":505866668485386240,"id_str":"505866668485386241","indices":[101,123],"media_url":"http://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg","media_url_https":"https://pbs.twimg.com/media/BwUzDgbIIAEgvhD.jpg","url":"http://t.co/fVVOSML5s8","display_url":"pic.twitter.com/fVVOSML5s8","expanded_url":"http://twitter.com/fightcensorship/status/505866670356070401/photo/1","type":"photo","sizes":{"large":{"w":640,"h":554,"resize":"fit"},"medium":{"w":600,"h":519,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":294,"resize":"fit"}},"source_status_id":505866670356070400,"source_status_id_str":"505866670356070401"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zh"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sun Aug 31 00:28:56 +0000 2014","id":505874847260352500,"id_str":"505874847260352513","text":"\u3010\u30DE\u30A4\u30EA\u30B9\u30C8\u3011\u3010\u5F69\u308A\u308A\u3042\u3011\u5996\u602A\u4F53\u64CD\u7B2C\u4E00\u3000\u8E0A\u3063\u3066\u307F\u305F\u3010\u53CD\u8EE2\u3011 http://t.co/PjL9if8OZC #sm24357625","source":"\u30CB\u30B3\u30CB\u30B3\u52D5\u753B","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1609789375,"id_str":"1609789375","name":"\u98DF\u3044\u3057\u3093\u574A\u524D\u3061\u3083\u3093","screen_name":"2no38mae","location":"\u30CB\u30CE\u3068\u4E8C\u6B21\u5143\u306E\u9593","description":"\u30CB\u30B3\u52D5\u3067\u8E0A\u308A\u624B\u3084\u3063\u3066\u307E\u3059!!\u5FDC\u63F4\u672C\u5F53\u306B\u5B09\u3057\u3044\u3067\u3059\u3042\u308A\u304C\u3068\u3046\u3054\u3056\u3044\u307E\u3059!!\u3000\u307D\u3063\u3061\u3083\u308A\u3060\u3051\u3069\u524D\u5411\u304D\u306B\u9811\u5F35\u308B\u8150\u5973\u5B50\u3067\u3059\u3002\u5D50\u3068\u5F31\u866B\u30DA\u30C0\u30EB\u304C\u5927\u597D\u304D\uFF01\u3010\u304A\u8FD4\u4E8B\u3011\u308A\u3077(\u57FA\u672C\u306F)\u201D\u25CB\u201D\u3000DM (\u540C\u696D\u8005\u69D8\u3092\u9664\u3044\u3066)\u201D\u00D7\u201D\u3000\u52D5\u753B\u306E\u8EE2\u8F09\u306F\u7D76\u5BFE\u306B\u3084\u3081\u3066\u304F\u3060\u3055\u3044\u3002 \u30D6\u30ED\u30B0\u2192http://t.co/8E91tqoeKX\u3000\u3000","url":"http://t.co/ulD2e9mcwb","entities":{"url":{"urls":[{"url":"http://t.co/ulD2e9mcwb","expanded_url":"http://www.nicovideo.jp/mylist/37917495","display_url":"nicovideo.jp/mylist/37917495","indices":[0,22]}]},"description":{"urls":[{"url":"http://t.co/8E91tqoeKX","expanded_url":"http://ameblo.jp/2no38mae/","display_url":"ameblo.jp/2no38mae/","indices":[125,147]}]}},"protected":false,"followers_count":560,"friends_count":875,"listed_count":11,"created_at":"Sun Jul 21 05:09:43 +0000 2013","favourites_count":323,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3759,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F2C6E4","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/378800000029400927/114b242f5d838ec7cb098ea5db6df413.jpeg","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg","profile_image_url_https":"https://pbs.twimg.com/profile_images/487853237723095041/LMBMGvOc_normal.jpeg","profile_banner_url":"https://pbs.twimg.com/profile_banners/1609789375/1375752225","profile_link_color":"FF9EDD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sm24357625","indices":[53,64]}],"symbols":[],"urls":[{"url":"http://t.co/PjL9if8OZC","expanded_url":"http://nico.ms/sm24357625","display_url":"nico.ms/sm24357625","indices":[30,52]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"}],"search_metadata":{"completed_in":0.087,"max_id":505874924095815700,"max_id_str":"505874924095815681","next_results":"?max_id=505874847260352512&q=%E4%B8%80&count=100&include_entities=1","query":"%E4%B8%80","refresh_url":"?since_id=505874924095815681&q=%E4%B8%80&include_entities=1","count":100,"since_id":0,"since_id_str":"0"}}
\ No newline at end of file
diff --git a/unquote/unquote.go b/unquote/unquote.go
new file mode 100644
index 0000000..0ffdaac
--- /dev/null
+++ b/unquote/unquote.go
@@ -0,0 +1,56 @@
+/*
+ * Copyright 2021 ByteDance Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package unquote
+
+import (
+ `unsafe`
+
+ `github.com/bytedance/sonic/internal/native`
+ `github.com/bytedance/sonic/internal/native/types`
+ `github.com/bytedance/sonic/internal/rt`
+)
+
+func String(s string) (ret string, err types.ParsingError) {
+ mm := make([]byte, 0, len(s))
+ err = intoBytesUnsafe(s, &mm)
+ ret = rt.Mem2Str(mm)
+ return
+}
+
+func IntoBytes(s string, m *[]byte) types.ParsingError {
+ if cap(*m) < len(s) {
+ return types.ERR_EOF
+ } else {
+ return intoBytesUnsafe(s, m)
+ }
+}
+
+func intoBytesUnsafe(s string, m *[]byte) types.ParsingError {
+ pos := -1
+ slv := (*rt.GoSlice)(unsafe.Pointer(m))
+ str := (*rt.GoString)(unsafe.Pointer(&s))
+ ret := native.Unquote(str.Ptr, str.Len, slv.Ptr, &pos, 0)
+
+ /* check for errors */
+ if ret < 0 {
+ return types.ParsingError(-ret)
+ }
+
+ /* update the length */
+ slv.Len = ret
+ return 0
+}