Gson merge two json objects. toJson(1); // prints 1 gson.
Gson merge two json objects. Using Es6 map() and filter() .
Gson merge two json objects Eg. You can then use extend on the first Map with the second Map as the argument. Aug 21, 2020 · I need to find a way how to merge two (or more) JSON objects into a single JSON object without JSON arrays. lang. Mar 4, 2016 · I have two JSON files. json To merge two files recursively on all levels, do the same using * as operator instead: jq '. Jul 22, 2015 · You have to create two root DTOs - one for a root having a list of children and one for a root having a single child and after unmarshalling the JSON add the "single child" element to the root with the list of children. Sep 8, 2022 · Both these JSONs have a common key "title" based on which I want to merge these two JSONs, either merging JSON-2 values into JSON-1 or creating a JSON object with the merged result. Example May 7, 2015 · I need to merge two json object based on key value using javascript. Replace the pattern /}{/g with "," Parse the result string back to JSON object Well, once your JSON is fetched and parsed, you can iterate through the properties and add them to a new object. Gson can work with arbitrary Java objects including pre-existing objects that you do not have source code of. For eg: To merge two files on top level, simply add the second file from input to the first in . This mean that trying to parse a new file on top of the old one won't preserve the old data. For example I've created three files which would look like this: ExampleFile_1 { "i I use org. 3. Map interface. See the below examples for Jackson and Gson: ObjectMapper mapper = new ObjectMapper(); TypeReference<HashMap<String, Object>> type = new TypeReference<HashMap<String, Object>>() {}; Map<String, Object> leftMap = mapper. What you can do is, you can check if the key has already value in the map or not. toJson(modelClassObject); Apr 29, 2019 · Had an interesting corner case where I needed to merge properties from two JSON objects, this worked like a charm. something like: gson. I did the following. fromJson(reader1 , List. There are some nested objects in this data. assign() The Object. Jan 8, 2024 · One of the most frequently used Jackson features is the ObjectMapper which allows us to map JSON into our Java objects and do the same in reverse. Something like: insert into mytable values ('{ "a": "b" ') update mytable set json Oct 7, 2014 · I have the following JSON object. For example, imagine you have this object: Jun 21, 2018 · Reading the JSON documents as Maps and comparing them. class); JsonReader reader2 = new JsonReader(new FileReader(new File(/path of "file2. json"/))); List The use Gson and form your Json string using jsonFrom. toJson(event); It will appear like so: additional_properties: {"value1":1,"value2":"abc"} I would simply like to append to the event object in the following form: Feb 22, 2018 · I have a table storing json in one column. 4. merge(String updatedValuesAsJson, class of the object, originalObject) I need to combine those two JSON arrays into one large JSON array. 0" Add required imports: import scala. 1] ] }] that I can plot using flot . It is not supported to define multiple @SerializedName annotations to a field at Gson. I'm using @SerializedName anotation to import some of the nested fields into my java object. Merge multiple json objects. extend(true, {}, json1, json2); will cause all values sharing the same key name to be overridden by the latest supplied in the params. toJson(device); // device is a entity. Knowing that, User. – Rodinga. The org. Aug 6, 2015 · You can then call this method by doing (note: should only create the Gson object once, but I did it this way to keep the code short): public String convertToJson(Results results) { GsonBuilder builder = new GsonBuilder(); builder. terms: All values need to merge. To make this a little more than thank you comment, as of Jackson 2. Dec 21, 2017 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Apr 20, 2012 · Merge/Extend JSON Objects using Gson in Java. . toJson(objResult); In this example, the string jsonstr returns a null value. class); Gson will automatically use your custom deserializer to parse your JSON into your Test class. Is there any workaround using those libraries. registerTypeAdapter(new ResultsAdapter()): Gson gson = builder. json file for writing. json file2. I would like gson to have a merge function that adds all values from an jsonstring to an existing object but not changing the values that don't exist in the json string. java. populate(); list2. For example: { a:{ b:"as Oct 14, 2019 · You can use any one of the most popular JSON libraries to achieve this, following sample shows how to merge several JSON string into one by Jackson. Check the code below to understand more. fasterxml. dump() method serializes the supplied object as a JSON formatted stream and writes it to a file. Finally add the collection to the mergedObject. How convert Object String to Data Class in kotlin. Merge two java arrays to a single json string. registerTypeAdapter(Test. There's code example: public static void mergeJSONs() { JSONObject jsonObject1 = new Sep 10, 2020 · I tried searching for a JAVA library that I could use but to no avail. Can I use gson or other library parse this json array, how should I do? This is the json code block: Oct 20, 2009 · I don't know if I correctly understand this request. Dec 12, 2021 · Sometimes it will be great to have handy utility ready which combines two or multiple JSONObjects. 4 put() is deprecated and should be substituted with replace(). Apr 13, 2011 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand May 31, 2017 · but it also supports comparing two objects that represent JSON element internally: JsonObject actual = new JsonObject(); actual. toJson(list1); Obviously populate isn't a method of lists, but you can only convert single objects to JSON . com In this tutorial, we will explore how to merge two JSON objects and demonstrate this with a clear code example. Text. Note that if you care about the order of the elements, Json doesn't preserve order on the fields of Objects, so this method won't show those comparisons. * input' file1. I follow the tutorial on web. public class Items{ ArrayList<String> names; String candy; //nested custom class if necessary ArrayList<Companies> companies; //other fields here //getter setter } Now set the values for objects of Items. The merge() function above only merges the top-level object. cpp). Oct 11, 2021 · I'm assuming that the output you require is a new file with a single array of objects. How can I get the following output? Gson - Merge multiple JSONs May 26, 2014 · I'm going to assume your settings files are JSON objects. com. dynamics. Is there a gson/jackson/groovy library I could use to combine or merge together multiple JSON Strings into one payload? Example : JSON payload A, B and C. The problem is, the tutorial on web and only save "one" json data. Feb 28, 2020 · Upon first appearance, the word "merg" leads one to think you need to use . readValue(leftJson, type); Map<String, Object> rightMap = mapper. merge = function (o,ob) { for (var z in ob) { o[z] = ob[z]; } return o; } json3 = JSON. 1. toJson(new Long(10)); // prints 10 int[] values = { 1 }; gson. build(); return gson. I would like both B and C to be added/merged to A. Nov 6, 2013 · Merge two JSON objects programmatically. This is the solution from Johan van de Merwe based on Elliot's answer, added to the actual JSON object. Same keys are merged for objects and * overwritten by last object for primitive types. Jan 7, 2019 · if you have an enumerable of objects and wish to create a combined JSON file by merging together their JSON representations, you can project each object to a JObject using JObject. cpp in the final array), but sometimes you don't (the object with file3. Here is simple example: Gson is a Java library that can be used to convert Java Objects into their JSON representation. The json. I want to combine them into a single JSON object. Cast that value to whatever type you expect (JSON object, array, or primitive), perform your removal and invoke its toString() method to retrieve its JSON representation as a String. However, $. extend, which is the proper jQuery way to "merge" JSON objects. Dec 1, 2024 · To combine JSON objects in Java, you can utilize libraries such as org. Net. Provide details and share your research! But avoid …. I could treat this as a String manipulation problem and replace the inner end square brackets with commas but that's not particularly robust (though I am guaranteed to get valid JSON). readValue Apr 5, 2016 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. I want to combine them into one in such a way that the second file has a greater priority. By far the most popular example on the Web seems to be this one: Dec 20, 2017 · Kotlin convert json string to list of object using Gson. That is, IT WON'T WORK. In your example, it seems that sometimes you want objects from incremental_build to overwrite those from full_build (there is only one object that mentions file2. 0. Aug 4, 2015 · I have Gson and JsonObject, such as: Gson gson = new Gson(); String deviceJson = gson. Mar 27, 2012 · Excellent, Arne, that is exactly what I've needed, you've saved me hours of investigation, thank you. Json Sep 5, 2014 · GsonBuilder gson = new GsonBuilder(); gson. Sep 8, 2015 · How can I parse json using gson? I have a json array with multiple object types, and I don't know, what kind of object I need to create to save this structure. 4], [17. pathikrit" %% "dijon" % "0. assign is the most straightforward approach to add two or more objects. 3, -14. Utility for merging JSON objects supporting multiple JSON providers java json merge gson jackson json-merger jsonpath json-smart json-merge json-org Updated Nov 24, 2024 Sep 1, 2015 · If you deserialize the objects as a Map<String, Object>, you can with Guava also, you can use Maps. The JSON you posted is quite weird and uneasy to use with Gson, is it a requirement or can you edit it as you please? Hope this helps. Aug 21, 2020 · Use the Dijon library for safe parsing and merging of JSON objects. JSONObject. dijon. The algorithm implemented by JSON Merge is provider-agnostic. JSONObject to merge two JSON objects in Java. I'd rather treat these two Strings as JSON arrays and just add them together somehow. json Aug 17, 2014 · This is a working example based (and tested) with gson-2. I need to remove the duplicates and merge the inner object using plain Javascript. util. Merge two JSONs to JSONObject instead of JSONArray. toJson(results); } Feb 2, 2018 · It appears from your question and your answer to the questions in the comments that you are building these structures yourself and can change the definitions of them. Using org. difference to compare the two resulting maps. Concatenate all the JSON strings using + operator. Apr 6, 2019 · You have two arrays of JSON objects and based on them you want to construct a single array. Deserializer can be implemented as the following: Feb 27, 2011 · You don't need to use JsonObject. addProperty("test", 1); assertJsonEquals(expected, actual); Framework has support for both Jackson and Gson and support for Hamcrest matchers. – Nov 9, 2017 · Serialize your Java object to a JsonElement directly with Gson#toJsonTree(Object). Nov 2, 2017 · If you parse both pieces of JSON to the serde_json::Value enum then you can call as_object_mut or use if let to destructure the values to Maps. This design was chosen to eliminate the need for intermediary JSON object type conversions for the different providers. But the parsing capabilities of org. You just need to change the two static objects to a loop and store each JSON into a list of dictionary, then serialize it. In that case you can use org. dumps() method simply converts a Python object to a JSON string. deviceJson: {"id": 1, Sep 20, 2016 · How to merge two JSON arrays in Android? There is no direct way to merge the json as you are restructuring the existing json object. I want to wrap it inside another json object, like this: { version: 1, content: >>arbitrary_json_string_object<< } How can I Dec 22, 2013 · Ok i am creating an application that used JSON to save date. create(); String json = gson. I want to gather these fields into a single object in Java. Be careful though, if there are properties with the same name they will be overwritten. Apr 25, 2015 · and I want to merge/union the two Data array, such as: Newtonsoft. 1, 1. I use a Map<String, Object> (says jsonMap) for the merged JSON string. Here is simple Java example which shows the same. Also removing any duplicated keys that are null or empty. json library allows you to easily manipulate Aug 4, 2015 · Merge Gson and JsonObject #678. Merging more than two JSON objects is not a big deal when you use the above code. See full list on baeldung. class); And that's it! Now you can access all your data within the response object using the getters and setters For example, in order to access the first value 456, you'll need to do:. _ Parse input JSON values and print a merged JSON value: Apr 14, 2017 · I wish to get the JSON output as below which is two objects combined I think without using array. Jul 8, 2009 · I have two JSON objects. create or replace aggregate jsonb_merge_agg(jsonb) ( sfunc = jsonb_concat, stype = jsonb, initcond = '{}' ); create or replace function jsonb_concat(a jsonb, b jsonb) returns jsonb as 'select $1 || $2' language sql immutable parallel safe ; Oct 14, 2016 · Merge/Extend JSON Objects using Gson in Java. class, new TestDeserializer()); And finally you just have to parse your JSON as usual, with: gson. json or Gson. Sep 8, 2020 · In this quick tutorial, we’ll learn how to combine two or more JSON object into one object in JavaScript. JSONArray and gson library. 7. jackson. Using Es6 map() and filter() Merge two or more arrays of JSON objects into one array, preserving uniqueness. Deep merge. UnsupportedOperationException: JsonObject - Not sure why. json Library. Gson library itself doesn't offer a functionality to compare JSON elements or serialized representation thereof. json. Sep 4, 2014 · I don't believe that Gson library makes any statements that the JSON output from two equal JSON elements will be the same, mostly due to the order of properties in objects, since the standard doesn't require any kind of order. addAll(list2); Gson gson = new GsonBuilder(). * @param objects Any amount of JSON-objects to merge. JSONObject comes directly with android while Gson doesn't. Apr 19, 2017 · I do believe the OP was asking for org. + input' file1. * * @return Merged JSON-object. As seen here, when JSONCpp parses a file, it clears the contents of the root node. You can deeply merge two json strings with com. cpp doesn't overwrite the object with file1. We can merge two private Map<String, Object> additionalProperties; But if I add additionalProperties to the Event object, and build Gson in the normal way: Gson gson = BUILDER. Gson - Merge multiple JSONs objects into one JSON. Feb 9, 2015 · It looks like you don't want to actually merge two arrays into one, but you want to create JSON object where its keys are stored in first array, and value in second array. Object. Process the json and set the Jul 21, 2021 · You are seeing other keys okay because other keys hase exact same value in both JSON's. For example, I need to combine all elements of multiple jsons into same-level elements of one json. I would like to merge multiple JSON files into one file. Remove I have the following inputs - 2 json files one is the base one and the second contains the same properties but the different values, I'd like to merge that objects. simple. Goals for Gson Jan 3, 2017 · list1. I cannot change the json data format (I don't control the server). I would like to update the json value by merging in another json. using +: jq '. Jan 12, 2012 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Oct 31, 2016 · The plain truth is that you should use a database like MONGODB if you really have many of these objects to save. How can we deserialize the complex, nested JSON into Java objects? Nested Objects Deserialization Jan 14, 2011 · How do I create a json Object using Google Gson? The following code creates a json object which looks like {"name":"john"} JsonObject jsonObject = new JsonObject(); jsonObject. k. Merge two array of objects removing duplicates. Of course, we could add more nested objects for the user's payment method or work address. On the other hand, the json. Jan 8, 2024 · To overcome this and compare JSON data semantically, we need to load the data into a structure in memory that’s not affected by things like whitespace or by the order of an object’s keys. You should be using Gson to convert to/from JSON strings and your own Java objects. It accepts an arbitrary sequence of JSON objects on a given input stream. a. json library allows you to easily manipulate Aug 31, 2016 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Mar 2, 2016 · So I'm quite late to the party but I wanted to share my solution if anybody stumbles across this. merge(json1,json2); Mar 30, 2018 · org. toJson("abcd"); // prints "abcd" gson. It blindly overrides members of the destination object. Merge Dec 10, 2015 · If the list is just one, why do you iterate jsonArray like its sub-objects are lists themselves? If you model your class correctly on the JSON then you don't need to iterate the JSON to obtain your objects. Following is the code required to achieve that : Gson gson = new Gson(); JsonReader reader1 = new JsonReader(new FileReader(new File(/path of "file1. * * @param keyCombinations Key names for unique object identification. sbt: libraryDependency += "com. readerForUpdating(). May 26, 2016 · Gson correctly created the nested userAddress JSON object. "JSON" refers to a string representation of those. _ import com. Because of this many libraries have functions that expect a org. JSON. package crunchify. If order is at all important, you have to find a way to populate a singular list containing the data in the order you need May 7, 2015 · Looks like nobody proposed this kind of solution yet, so here's my take, using custom aggregate functions:. One is python array which is converted using json,dumps() and other contains records from database and is serialized using json serializer. Sadly, you're using anonymous structs, but given that you're clearly trying to json marshal them, you're better of defining them as types: Feb 20, 2013 · Here is simple solution, to merge JSON. Commented Jun 29, 2016 at 7:26. Merging multiple JSON data blocks into a single Nov 25, 2010 · Thank you, My last Question is for example object1 is my jsonobject can i convert this json object directly to string type means String jsonstr= object1; but you have taken a class which have the data belongs to json object In my project i am getting this data dynamically means data may change day by day. Merge JsonObject(gson)- merging two json objects into single object in java. I have two different variable g and c. That is: if 1 has the property foo and 2 has no property foo, 3 will have the prop I have two arrays of Javascript Objects and want to merge the properties of the two Javascript Objects with identical "ObjID" into one Javascript Object. toJson(1); // prints 1 gson. Nov 24, 2015 · I've been experimenting with Retrofit and GSON in my project and came across an unusual case where I'm trying to convert two properties from JSON into a sub object using GSON on Android. Java: Merging two JSON objects without iterating. Here's the way you do it: Jun 15, 2019 · I have twitter data. fromJson(yourJsonString, Response. JSONObject value. fromJson(yourJsonString, Test. (being pedantic for the 2nd time on this page, sorry). Reason: By default Deserialization is managed with a LinkedHashMap and the keys are defined by incoming json's field names (not the custom class's field names or the serializedNames) and there is a one to one mapping. Apr 14, 2017 · There are at least two approaches that are different at the very base: Using data transfer objects letting you control the result using object mapping; Using type adapters (and possibly streaming, but I'm not sure if it's possible in Gson for you case) Mar 24, 2019 · the requirement is well described, i would only add that you want to merge the keys and get the unique values from the 2 objects (if that's not the case, pay attention to the union filter in the PB below). create(); gson. pathikrit. You could read both JSON documents as Map<K, V>. github. 8. Then: Gson gson = new Gson(); String json = gson. There is currently an enhancement request to implement a modifiable JSON Document Object Model: Issue #39922: Writable Json DOM. Gson offers those better parsing capabilities. Merging source JSON before deserializing using Newtonsoft JSON. JSONObject; /** * @author Crunchify. We can use org. Below, we will explore how to combine JSON objects using both libraries, along with code examples. it is not possible to write this type of Apr 11, 2024 · We used the with statement to open a data. Anyway here is my solution your way: Nov 9, 2016 · Go is all about composition over inheritance. toJson(values); // prints [1] Jul 26, 2022 · Use json_agg() to build an array of objects: SELECT json_agg(the_column) AS result FROM tbl; Or json_each() in a LATERAL join and json_object_agg() to build an object with unnested key/value pairs (your desired output): SELECT json_object_agg(key, value) AS the_column FROM tbl, json_each(the_column); fiddle Nov 7, 2014 · is there any possibility to serialize anonymous object type to JSON using Gson or any else library on JAVA ? Object objResult = new Object() { boolean success = true; String email="[email protected]"; }; String jsonstr = gson. The merged result should look like below: Jul 4, 2020 · How can we merge two JSON objects in Java - A JSON is a lightweight data-interchange format and the format of JSON is a key with value pair. 2. 0, 5. Here is simple example: Feb 9, 2015 · It looks like you don't want to actually merge two arrays into one, but you want to create JSON object where its keys are stored in first array, and value in second array. populate(); list1. All of those files have the same structure. Convert each of the JSON to strings using JSON. Even the nested objects can have nested objects! In the next part, we'll look at the other direction. In this scenario you pass in two Json as String and merge them via readerForUpdating (untested code): Dec 13, 2014 · You can iterate via for loop and in every iteration create new JSONObject and add it to a collection. var g = [ { id: 36, name: 'AAA', goal: 'yes' }, Jul 18, 2012 · and I want to create a json object such that the two arraylists are consolidated into a single json object as: [ { label: "A", data: [ [10. stringify(object). These libraries provide straightforward methods to merge JSON objects effectively. And, of course, it does not impose any restrictions on how you have formatted your input: Aug 10, 2019 · You're merging two plain objects (a. It can also be used to convert a JSON string to an equivalent Java object. Yes i know how to use Gson. I used GSON as my JSON "processor". The actual read/write operations on the JSON objects are delegated to a specialized JsonProvider which must be specified during JsonMerger creation. core:jackson-databind ObjectMapper. addProperty("name", Mar 14, 2017 · Even shorter: Gson does not merge multiple strategies (at least by default), so you either delegate object construction and setting up to Gson, or instantiate it completely. Now, let’s see how we can merge the members instead of overriding them. How to combine two or more JSON objects into one JSONObject. EDIT Dec 11, 2015 · Finally, you just need to parse the JSON into your Java class structure with: Gson gson = new Gson(); Response response = gson. For example: // Array of Javascript Objec Apr 20, 2024 · Program To Merge Multiple Json Objects or Files. 10. FromObject, then merge those: // Get the results IEnumerable<MeasurementSet__NoStrata> measurements1 = GetNoStrataMeasurements(); // Get no-strata measurements. addProperty("test", 1); JsonObject expected = new JsonObject(); expected. Add the dependency in your build. JSONObject, not Gson, but here are some comments regarding Gson: 1) You don't have to create multiple Gson instance. POJOs). Thanks. * Or empty collection. 3. In this short tutorial, we’ll solve this using Gson, a JSON serialization\deserialization library that can do a deep comparison between JSON objects. com * Program: How to Merge/Concat Multiple JSONObjects in Java? Dec 1, 2024 · To combine JSON objects in Java, you can utilize libraries such as org. Closed VernonLee opened this issue Aug 5, I want to merge gson and json object together, result like this: newJson: {"id": 1, Oct 24, 2013 · json objects to be merge in that new json object like this. NET: Deserialise and merge JSON string. tutorials; import org. language. If you change the value of other keys too in the second json, you'll see it the merged JSON will have the values with the same key from second json. Asking for help, clarification, or responding to other answers. One ability of the ObjectMapper is to read an object and update it with new data from a JSON String, assuming the JSON is in the correct structure. json"/))); List<String> data1 = gson. – Dec 11, 2013 · I have a String object containing some arbitrary json. Json now supports merging objects Merge/Extend JSON Objects using Gson in Java. The JSONObject can parse a text from a String to produce a map-like object and supports java. // Extend JSON object JSON. JSONObject are not great, so many developers want better ones. Jan 13, 2016 · To make it more neat, you can add the merge function to the JSON object. JSONException; import org. Anyway, upvoted question for being clear and legitimate. 0. It has an associated specification Writable JSON Document Object Model (DOM) for System. See the Gson User Guide: (Serialization) Gson gson = new Gson(); gson. 2) Generics are your friends. As such it isn't designed to support modifying a JSON value in any way including merging another JSON value into it. Step-by-step Guide to Merge JSON Objects Using Gson : 1. 7], [30.
igdc mfc xxlat gtlrs wal mvrix pxwfe gaz eol lbjn
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}