// Token: 0x060000C9 RID: 201 RVA: 0x000053E4 File Offset: 0x000035E4
        public TreeNode CreateSubtree()
        {
            OrNode orNode = new OrNode();

            foreach (ClassificationDecoding classificationDecoding in this.decodings)
            {
                orNode.AddNode(classificationDecoding.CreateSubtree());
            }
            return(orNode);
        }