1{ 2 pos: { 3 x: 1, 4 y: "2", 5 z: 3, 6 test1: 3, 7 test2: Green, 8 test3: { 9 a: 5, 10 b: 6 11 } 12 }, 13 hp: 80, 14 name: "MyMonster", 15 inventory: [ 16 0, 17 1, 18 2, 19 3, 20 4 21 ], 22 vector_of_longs: [ 23 1, 24 100, 25 10000, 26 1000000, 27 100000000 28 ], 29 vector_of_doubles: [ 30 -1.7976931348623157e+308, 31 0, 32 1.7976931348623157e+308 33 ], 34 test_type: Monster, 35 test: { 36 name: "Fred", 37 pos: null 38 }, 39 test4: [ 40 { 41 a: 10, 42 b: 20 43 }, 44 { 45 b: "40", 46 a: 30 47 } 48 ], 49 test5: [ 50 { 51 a: 10, 52 b: 20 53 }, 54 { 55 b: "40", 56 a: 30 57 } 58 ], 59 testarrayofstring: [ 60 "test1", 61 "test2" 62 ], 63 enemy: { 64 name: "Fred" 65 }, 66 testarrayofbools:[ 67 true, false, true 68 ], 69 testbool: true, 70 testhashs32_fnv1: "This string is being hashed!", 71 testhashu32_fnv1: "This string is being hashed!", 72 testhashs64_fnv1: "This string is being hashed!", 73 testhashu64_fnv1: "This string is being hashed!", 74 testhashs32_fnv1a: "This string is being hashed!", 75 testhashu32_fnv1a: "This string is being hashed!", 76 testhashs64_fnv1a: "This string is being hashed!", 77 testhashu64_fnv1a: "This string is being hashed!", 78} 79