# File lib/active_record/base.rb, line 1455
      def init_with(coder)
        @attributes = coder['attributes']
        @attributes_cache, @previously_changed, @changed_attributes = {}, {}, {}
        @new_record = @readonly = @destroyed = @marked_for_destruction = false
        _run_find_callbacks
        _run_initialize_callbacks
      end